16 lines
314 B
TypeScript
16 lines
314 B
TypeScript
import { purgeCss } from 'vite-plugin-tailwind-purgecss';
|
|
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [sveltekit(), purgeCss()],
|
|
server: {
|
|
host: true,
|
|
port: 8004,
|
|
},
|
|
preview: {
|
|
host: true,
|
|
port: 8004,
|
|
},
|
|
});
|