app.craft.vin/vite.config.js

12 lines
366 B
JavaScript
Raw Normal View History

import { purgeCss } from 'vite-plugin-tailwind-purgecss';
2024-01-03 20:35:06 +01:00
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
2024-01-16 08:52:45 +01:00
import { SvelteKitPWA } from '@vite-pwa/sveltekit';
2024-01-03 20:35:06 +01:00
export default defineConfig({
2024-01-18 15:35:12 +01:00
plugins: [sveltekit(), purgeCss(), SvelteKitPWA()],
define: {
__APP_VERSION__: JSON.stringify(process.env.npm_package_version),
},
2024-01-03 20:35:06 +01:00
});