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()],
|
2024-11-12 01:33:41 +00:00
|
|
|
css: {
|
|
|
|
preprocessorOptions: {
|
|
|
|
scss: {
|
|
|
|
api: 'modern-compiler' // or "modern"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-10-26 08:57:34 +00:00
|
|
|
})
|