blob: 8d048a78226b9f8563492071a1a567cfc7ef0332 [file] [log] [blame]
Akron756f5992024-07-17 11:34:36 +02001import { defineConfig } from 'vite';
2import path from 'path';
3
4const scssDir = path.resolve(__dirname, '../../../scss');
5
6export default defineConfig({
7 server: {
8 fs: {
9 allow: [
10 scssDir,
11 __dirname
12 ]
13 }
14 },
15 css: {
16 preprocessorOptions: {
17 scss: {
18 loadPaths: [scssDir]
19 }
20 }
21 }
22});