ptools-v2/vite.config.ts

15 lines
279 B
TypeScript
Raw Permalink Normal View History

2024-10-26 08:57:34 +00:00
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
css: {
preprocessorOptions: {
scss: {
api: 'modern-compiler' // or "modern"
}
}
}
2024-10-26 08:57:34 +00:00
})