This repository has been archived on 2024-08-06. You can view files and clone it, but cannot push or open issues or pull requests.
chellaris-sign-up-site/vite.config.ts

16 lines
314 B
TypeScript
Raw Normal View History

2023-09-13 14:30:24 +00:00
import { purgeCss } from 'vite-plugin-tailwind-purgecss';
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
2023-09-13 14:30:24 +00:00
plugins: [sveltekit(), purgeCss()],
2023-08-08 17:40:09 +00:00
server: {
2023-08-21 01:45:52 +00:00
host: true,
2023-08-08 17:40:09 +00:00
port: 8004,
},
preview: {
2023-08-21 01:45:52 +00:00
host: true,
2023-08-08 17:40:09 +00:00
port: 8004,
},
});