diff options
Diffstat (limited to 'extension/vite.config.ts')
-rw-r--r-- | extension/vite.config.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/extension/vite.config.ts b/extension/vite.config.ts new file mode 100644 index 0000000..0eaa701 --- /dev/null +++ b/extension/vite.config.ts @@ -0,0 +1,11 @@ +import { defineConfig } from 'vite' +import react from '@vitejs/plugin-react' + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [react()], + build: { + cssMinify: false, + minify: false, + }, +})
\ No newline at end of file |