1 Star 0 Fork 54

歪比巴布/模板-vue3+ts+vite+Arco Design开箱即用arco-work

forked from 清清玄/arco-work 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 2.09 KB
一键复制 编辑 原始数据 按行查看 历史
qingqingxuan 提交于 2024-01-30 10:48 . add cors
import vue from '@vitejs/plugin-vue'
import viteSvgIcons from 'vite-plugin-svg-icons'
import path from 'path'
import { defineConfig } from 'vite'
import dotenv from 'dotenv'
import vueJsx from '@vitejs/plugin-vue-jsx'
// 在正式打包的时候,可以把这两行代码放开
// import Components from 'unplugin-vue-components/vite'
// import { ArcoResolver } from 'unplugin-vue-components/resolvers'
export default defineConfig(({ mode }) => {
const dotenvConfig = dotenv.config({ path: `./.env.${mode}` })
const dotenvObj = dotenvConfig.parsed
return {
base: dotenvObj?.BUILD_PATH || '/',
build: {
outDir: dotenvObj?.BUILD_OUT_DIR || 'dist',
rollupOptions: {
output: {
manualChunks(id) {
if (id.includes('node_modules')) {
return id.toString().split('node_modules/')[1].split('/')[0].toString()
}
},
},
},
},
plugins: [
vue(),
viteSvgIcons({
iconDirs: [path.resolve(process.cwd(), 'src/icons')],
symbolId: 'icon-[dir]-[name]',
}),
vueJsx(),
// 在正式打包的时候,可以把这三行代码放开
// Components({
// resolvers: [ArcoResolver()],
// }),
],
css: {
preprocessorOptions: {
less: {
additionalData: `@import "src/styles/variables.less";`,
modifyVars: {},
javascriptEnabled: true,
},
},
},
resolve: {
alias: [
{
find: '@/',
replacement: path.resolve(process.cwd(), 'src') + '/',
},
],
},
server: {
open: true,
// 如果需要本地代理解决跨域问题,则需要把下面代码注释关闭
// proxy: {
// '/api': {
// // 以下为实际请求地址,注意域名部分不要写成 localhost 要用 ip:127.0.0.1 代替
// // 如:http://localhost:8888 要写成:http://127.0.0.1:8888
// target: 'http://xxxx',
// changeOrigin: true,
// rewrite: (path) => path.replace(/^\/api/, ''),
// },
// },
},
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gfhnice/arco-work.git
git@gitee.com:gfhnice/arco-work.git
gfhnice
arco-work
模板-vue3+ts+vite+Arco Design开箱即用arco-work
master

搜索帮助