mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 16:55:37 +02:00
🐜 fix(www): Error Missing "./400.css" specifier in "@fontsource/geist-mono" (#201)
## Description Attempts to fix the build issue (again) where the non-variable fonts from font-source are throwing `Missing "./*00.css" specifier in "@fontsource/geist-*` while building or developing locally... like damn! ## Related Issues <!-- List any related issues (e.g., "Closes #123", "Fixes #456") --> ## Type of Change - [x] Bug fix (non-breaking change) - [ ] New feature (non-breaking change) - [ ] Breaking change (fix or feature that changes existing functionality) - [ ] Documentation update - [ ] Other (please describe): ## Checklist - [x] I have updated relevant documentation - [x] My code follows the project's coding style - [ ] My changes generate no new warnings/errors
This commit is contained in:
@@ -35,10 +35,10 @@
|
|||||||
"@builder.io/qwik": "^1.8.0",
|
"@builder.io/qwik": "^1.8.0",
|
||||||
"@builder.io/qwik-city": "^1.8.0",
|
"@builder.io/qwik-city": "^1.8.0",
|
||||||
"@builder.io/qwik-react": "0.5.0",
|
"@builder.io/qwik-react": "0.5.0",
|
||||||
"@fontsource/bricolage-grotesque": "^5.0.7",
|
"@fontsource-variable/bricolage-grotesque": "^5.0.1",
|
||||||
"@fontsource/geist-mono": "^5.1.0",
|
"@fontsource/geist-mono": "^5.1.0",
|
||||||
"@fontsource/geist-sans": "^5.1.0",
|
"@fontsource/geist-sans": "^5.1.0",
|
||||||
"@fontsource/mona-sans": "^5.0.1",
|
"@fontsource-variable/mona-sans": "^5.0.1",
|
||||||
"@modular-forms/qwik": "^0.29.0",
|
"@modular-forms/qwik": "^0.29.0",
|
||||||
"@nestri/input": "*",
|
"@nestri/input": "*",
|
||||||
"@nestri/libmoq": "*",
|
"@nestri/libmoq": "*",
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
import { bus } from "./bus";
|
import { bus } from "./bus";
|
||||||
import { database } from "./database";
|
|
||||||
import { domain } from "./dns";
|
import { domain } from "./dns";
|
||||||
import { email } from "./email";
|
import { email } from "./email";
|
||||||
import { secret } from "./secret";
|
import { secret } from "./secret";
|
||||||
|
import { database } from "./database";
|
||||||
|
|
||||||
sst.Linkable.wrap(random.RandomString, (resource) => ({
|
sst.Linkable.wrap(random.RandomString, (resource) => ({
|
||||||
properties: {
|
properties: {
|
||||||
|
|||||||
@@ -6,7 +6,10 @@ export const bus = new sst.aws.Bus("Bus");
|
|||||||
|
|
||||||
bus.subscribe("Event", {
|
bus.subscribe("Event", {
|
||||||
handler: "./packages/functions/src/event/event.handler",
|
handler: "./packages/functions/src/event/event.handler",
|
||||||
link: [database, email, ...allSecrets],
|
link: [
|
||||||
|
database,
|
||||||
|
email,
|
||||||
|
...allSecrets],
|
||||||
timeout: "5 minutes",
|
timeout: "5 minutes",
|
||||||
permissions: [
|
permissions: [
|
||||||
{
|
{
|
||||||
@@ -14,4 +17,4 @@ bus.subscribe("Event", {
|
|||||||
resources: ["*"],
|
resources: ["*"],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
@@ -25,10 +25,10 @@
|
|||||||
"@builder.io/qwik-city": "^1.8.0",
|
"@builder.io/qwik-city": "^1.8.0",
|
||||||
"@builder.io/qwik-react": "0.5.0",
|
"@builder.io/qwik-react": "0.5.0",
|
||||||
"@fluejs/noscroll": "^1.0.0",
|
"@fluejs/noscroll": "^1.0.0",
|
||||||
"@fontsource/bricolage-grotesque": "^5.0.7",
|
"@fontsource-variable/bricolage-grotesque": "^5.0.1",
|
||||||
"@fontsource/geist-mono": "^5.1.0",
|
"@fontsource/geist-mono": "^5.1.0",
|
||||||
"@fontsource/geist-sans": "^5.1.0",
|
"@fontsource/geist-sans": "^5.1.0",
|
||||||
"@fontsource/mona-sans": "^5.0.1",
|
"@fontsource-variable/mona-sans": "^5.0.1",
|
||||||
"@modular-forms/qwik": "^0.29.0",
|
"@modular-forms/qwik": "^0.29.0",
|
||||||
"@nestri/core": "*",
|
"@nestri/core": "*",
|
||||||
"@qwik-ui/headless": "^0.6.4",
|
"@qwik-ui/headless": "^0.6.4",
|
||||||
|
|||||||
Reference in New Issue
Block a user