ptools-v2/vite.config.ts
Minhyeok Park 2fc8269442
All checks were successful
/ deploy_site (push) Successful in 21s
chore: remove trailing comma
2025-01-16 09:28:24 +09:00

15 lines
279 B
TypeScript

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"
}
}
}
})