| 12345678910111213141516 |
- import { defineConfig } from 'vite'
- import react from '@vitejs/plugin-react'
- export default defineConfig({
- plugins: [react()],
- server: {
- port: 5173
- },
- css: {
- preprocessorOptions: {
- scss: {
- api: 'modern-compiler', // 使用现代 API,消除弃用警告
- },
- },
- },
- })
|