T
TanStack4mo ago
stormy-gold

Error - Cannot find module '@/styles/app.css?url'

Hi, I have a question. This file exists at this path:
import appCss from "@/styles/app.css?url"
import appCss from "@/styles/app.css?url"
and the style is applied correctly. But I'm getting this error:
Cannot find module '@/styles/app.css?url' or its corresponding type declarations.ts(2307)
Cannot find module '@/styles/app.css?url' or its corresponding type declarations.ts(2307)
How can I fix this error? Thanks.
1 Reply
genetic-orange
genetic-orange4mo ago
You can add the below to a vite.d.ts file:
declare module "*?url" {
const result: string;
export default result;
}
declare module "*?url" {
const result: string;
export default result;
}

Did you find this page helpful?