11 lines
274 B
TypeScript
11 lines
274 B
TypeScript
import tailwindcss from '@tailwindcss/vite';
|
|
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [tailwindcss(), sveltekit()],
|
|
server: {
|
|
host: '127.0.0.1',
|
|
port: 5173
|
|
}
|
|
});
|