4 Star 11 Fork 3

蔡永祥/三维编辑器一期

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 994 Bytes
一键复制 编辑 原始数据 按行查看 历史
蔡永祥 提交于 2023-01-28 16:30 . 上传代码
import { defineConfig, loadEnv } from 'vite'
import vue from '@vitejs/plugin-vue'
import ElementPlus from 'unplugin-element-plus/vite'
import { resolve } from "path";
function pathResolve(dir) {
return resolve(__dirname, ".", dir);
}
// https://vitejs.dev/config/
export default defineConfig(({mode}) => {
// const env = loadEnv(mode, __dirname)
return {
base: "./",
publicPath: './',
plugins: [vue(),ElementPlus()],
assetsInclude: ['**/*.gltf'],
resolve: {
alias: {
// 如果报错__dirname找不到,需要安装node,执行yarn add @types/node --save-dev
"@": pathResolve("src")
}
},
build: {
target: 'modules',
outDir: 'dist',
assetsDir: 'assets',
sourcemap: true
},
server: {
proxy: {
'/api': {
target: /* env.VITE_BASE_API */ process.env.VITE_BASE_API,
changeOrigin: true,
rewrite:(path) => path.replace(/^\/api/, '')
}
}
}
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/caiyongxiang/phase-i-of-3d-editor.git
[email protected]:caiyongxiang/phase-i-of-3d-editor.git
caiyongxiang
phase-i-of-3d-editor
三维编辑器一期
master

搜索帮助