This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Twooth/vite.config.ts
Guz013 7c86e18f2b feat: mvp
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.
2023-05-23 16:37:34 -03:00

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 },
});