加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 826 Bytes
一键复制 编辑 原始数据 按行查看 历史
MiyueFE 提交于 2023-02-06 13:37 . feat: i18n configuration files
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
import * as path from 'path'
// https://vitejs.dev/config/
export default defineConfig({
base: process.env.NODE_ENV === 'production' ? './' : '/',
resolve: {
alias: {
'@': path.resolve(__dirname, 'src/'),
'vue-i18n': 'vue-i18n/dist/vue-i18n.cjs.js',
types: path.resolve(__dirname, 'types/')
}
},
server: {
port: 80
},
plugins: [
vue(),
vueJsx({}),
createSvgIconsPlugin({
// 指定需要缓存的图标文件夹
iconDirs: [path.resolve(process.cwd(), 'src/bpmn-icons')],
// 指定symbolId格式
symbolId: '[name]',
customDomId: '__svg__icons__dom__'
})
]
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化