build: add Wrangler text rule for CSS imports

Add [[rules]] type = "Text" globs = ["**/*.css"] to wrangler-example.toml
so Wrangler bundles .css files as raw text strings importable in TypeScript.
Add src/types/css.d.ts to provide the module declaration for `import css from "*.css"`.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Julien Herr
2026-05-22 15:43:49 +02:00
parent d64f703820
commit 5d75682702
8 changed files with 9 additions and 1463 deletions
+4
View File
@@ -0,0 +1,4 @@
declare module "*.css" {
const content: string;
export default content;
}