add build file vite-env.d.ts

This commit is contained in:
LC mac
2026-01-28 12:25:18 +08:00
parent 34633af539
commit b2be6d381c

8
src/vite-env.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
/// <reference types="vite/client" />
// Allow importing CSS files
declare module '*.css' {
const content: string;
export default content;
}