mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 08:45:38 +02:00
## 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
20 lines
415 B
TypeScript
20 lines
415 B
TypeScript
import { database } from "./database";
|
|
import { email } from "./email";
|
|
import { allSecrets } from "./secret";
|
|
|
|
export const bus = new sst.aws.Bus("Bus");
|
|
|
|
bus.subscribe("Event", {
|
|
handler: "./packages/functions/src/event/event.handler",
|
|
link: [
|
|
database,
|
|
email,
|
|
...allSecrets],
|
|
timeout: "5 minutes",
|
|
permissions: [
|
|
{
|
|
actions: ["ses:SendEmail"],
|
|
resources: ["*"],
|
|
},
|
|
],
|
|
}); |