blob: 7467b5b85a4a9a8b047fbaf484f4a842f80e48e2 [file] [log] [blame]
import { defineConfig } from 'vite';
import path from 'path';
const scssDir = path.resolve(__dirname, 'dev/scss'); // Path to your SCSS directory
export default defineConfig({
css: {
preprocessorOptions: {
scss: {
loadPaths: [scssDir]
}
}
},
server: {
port: 3000
}
});