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 b21312e commit 72eacabCopy full SHA for 72eacab
1 file changed
frontend/vite.config.ts
@@ -103,18 +103,20 @@ function getPlugins({
103
const plugins: PluginOption[] = [
104
envConfig({ isDevelopment, clientVersion, env }),
105
languageHashes({ skip: isDevelopment }),
106
+ injectHTML() as PluginOption,
107
+ tailwindcss(),
108
+ solidPlugin(),
109
+ ];
110
+
111
+ const devPlugins: PluginOption[] = [
112
oxlintChecker({
113
debounceDelay: 125,
114
typeAware: true,
115
overlay: isDevelopment,
116
}),
- injectHTML() as PluginOption,
- tailwindcss(),
- solidPlugin(),
117
+ Inspect(),
118
];
119
- const devPlugins: PluginOption[] = [Inspect()];
-
120
const prodPlugins: PluginOption[] = [
121
fontPreview(),
122
fontawesomeSubset(),
0 commit comments