12 lines
233 B
TypeScript
12 lines
233 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import tailwindcss from '@tailwindcss/vite';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
server: {
|
|
port: 3001
|
|
},
|
|
|
|
plugins: [tailwindcss(), sveltekit()]
|
|
});
|