diff options
Diffstat (limited to 'app/vite.config.ts')
-rw-r--r-- | app/vite.config.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/vite.config.ts b/app/vite.config.ts new file mode 100644 index 0000000..eefe408 --- /dev/null +++ b/app/vite.config.ts @@ -0,0 +1,7 @@ +import { purgeCss } from 'vite-plugin-tailwind-purgecss'; +import { sveltekit } from '@sveltejs/kit/vite'; +import { defineConfig } from 'vite'; + +export default defineConfig({ + plugins: [sveltekit(), purgeCss()] +}); |