mirror of
https://github.com/vitejs/vite.git
synced 2024-11-21 14:48:41 +00:00
16 lines
267 B
JavaScript
16 lines
267 B
JavaScript
import { defineConfig, mergeConfig } from 'vite'
|
|
import baseConfig from './vite.config.js'
|
|
|
|
export default mergeConfig(
|
|
baseConfig,
|
|
defineConfig({
|
|
css: {
|
|
preprocessorOptions: {
|
|
sass: {
|
|
api: 'modern',
|
|
},
|
|
},
|
|
},
|
|
}),
|
|
)
|