It's completed, sort of. Already know that it will be rewritten on 2.0.0. But it is usable and just misses some features. I'm tired.
9 lines
226 B
TypeScript
9 lines
226 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vite';
|
|
import UnoCss from 'unocss/vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [UnoCss(), sveltekit()],
|
|
server: { port: 3000, host: true },
|
|
});
|