mirror of
https://github.com/juherr/kill-the-news.git
synced 2026-06-20 22:03:48 +00:00
5d75682702
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>
5 lines
78 B
TypeScript
5 lines
78 B
TypeScript
declare module "*.css" {
|
|
const content: string;
|
|
export default content;
|
|
}
|