blob: 7467b5b85a4a9a8b047fbaf484f4a842f80e48e2 [file] [log] [blame]
Helgee8a39b12026-04-16 13:37:09 +02001import { defineConfig } from 'vite';
2import path from 'path';
3
4const scssDir = path.resolve(__dirname, 'dev/scss'); // Path to your SCSS directory
5
6export default defineConfig({
7 css: {
8 preprocessorOptions: {
9 scss: {
10 loadPaths: [scssDir]
11 }
12 }
13 },
14 server: {
15 port: 3000
16 }
17});
18