We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19773c7 commit 43cecf9Copy full SHA for 43cecf9
.changeset/fuzzy-steaks-end.md
@@ -0,0 +1,5 @@
1
+---
2
+'@gitbook/cli': minor
3
4
+
5
+Allow .raw.css files to be imported in the integration
packages/cli/src/build.ts
@@ -57,6 +57,9 @@ export async function buildScriptFromManifest(
57
// If importing a file as `.raw.js`, esbuild will convert to string so we can use that
58
// file as a string without opening it.
59
'.raw.js': 'text',
60
+ // If importing a file as `.raw.css`, esbuild will convert to string so we can use that
61
+ // file as a string without opening it.
62
+ '.raw.css': 'text',
63
},
64
});
65
0 commit comments