hypnagaga/vite.config.ts
Ben Aultowski d04c218f36 Squashed 'graphics-components-src/' content from commit 247be9ce
git-subtree-dir: graphics-components-src
git-subtree-split: 247be9ce40bd338d3934534fb6392504a0cdc81f
2026-02-25 21:21:50 -05:00

11 lines
293 B
TypeScript

import { defineConfig, type UserConfig } from 'vite';
import { sveltekit } from '@sveltejs/kit/vite';
const config: UserConfig = defineConfig({
css: {
preprocessorOptions: { scss: { quietDeps: true, api: 'modern-compiler' } },
},
plugins: [sveltekit()],
});
export default config;