You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
782 B
31 lines
782 B
8 months ago
|
import { defineConfig } from 'vite'
|
||
|
import vue from '@vitejs/plugin-vue'
|
||
|
import path from 'path'
|
||
|
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [
|
||
|
vue(),
|
||
|
// 配置svg插件
|
||
|
createSvgIconsPlugin({
|
||
|
// Specify the icon folder to be cached
|
||
|
iconDirs: [path.resolve(process.cwd(), 'src/assets/icons')],
|
||
|
// Specify symbolId format
|
||
|
symbolId: 'icon-[dir]-[name]',
|
||
|
}),
|
||
|
],
|
||
|
resolve: {
|
||
|
alias: {
|
||
|
'@': path.resolve('./src'), // 相对路径别名配置,使用 @ 代替 src
|
||
|
},
|
||
|
},
|
||
|
css: {
|
||
|
preprocessorOptions: {
|
||
|
scss: {
|
||
|
javascriptEnabled: true,
|
||
|
additionalData: '@import "./src/styles/variable.scss";',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
})
|