Files
Thanh Quy - wolf 9da99c6495 Created Page User
2026-03-22 15:10:44 +07:00

8 lines
292 B
TypeScript

/* Tell TypeScript that CSS files are valid side-effect imports.
Next.js handles the actual bundling; this declaration silences
the TS language-server warning for `import "./globals.css"`. */
declare module "*.css" {
const content: Record<string, string>;
export default content;
}