2025-05-27 13:08:34 +00:00
|
|
|
import tailwindcss from '@tailwindcss/vite';
|
|
|
|
|
import { sveltekit } from '@sveltejs/kit/vite';
|
|
|
|
|
import { defineConfig } from 'vite';
|
2023-12-29 02:57:23 +00:00
|
|
|
|
|
|
|
|
export default defineConfig({
|
2025-05-27 13:08:34 +00:00
|
|
|
plugins: [tailwindcss(), sveltekit()],
|
|
|
|
|
server: {
|
|
|
|
|
allowedHosts: true
|
|
|
|
|
}
|
2023-12-29 02:57:23 +00:00
|
|
|
});
|