We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7012df6 commit 7b22853Copy full SHA for 7b22853
packages/tailwindcss-language-server/vitest.config.mts
@@ -14,9 +14,16 @@ export default defineConfig({
14
name: 'force-inline-css',
15
enforce: 'pre',
16
resolveId(id) {
17
- if (!id.includes('index.css')) return
18
if (id.includes('?raw')) return
19
- return this.resolve(`${id}?raw`)
+
+ if (
20
+ id.includes('index.css') ||
21
+ id.includes('theme.css') ||
22
+ id.includes('utilities.css') ||
23
+ id.includes('preflight.css')
24
+ ) {
25
+ return this.resolve(`${id}?raw`)
26
+ }
27
},
28
29
],
0 commit comments