1 Star 0 Fork 1

polar/积分商城H5

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.js 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
小姜 提交于 2023-12-18 10:07 . 2023.12.18.01
import { defineConfig, loadEnv} from 'vite'
import vue from '@vitejs/plugin-vue'
// windicss
import WindiCSS from 'vite-plugin-windicss'
// vant
import Components from 'unplugin-vue-components/vite'
import { VantResolver } from '@vant/auto-import-resolver'
// node
import * as path from 'path'
export default ({ mode }) => {
const env=loadEnv(mode, process.cwd())
console.log("当前模式及配置",env)
return defineConfig({
base:env.VITE_APP_MODE === 'development'?'./':'/apps/com.awspaas.user.apps.jf/',
plugins: [
vue(),
WindiCSS(),
Components({
resolvers: [VantResolver()],
}),
],
resolve: {
// 配置根路径别名:
alias: {
'@': path.resolve(__dirname, 'src')
}
},
// 跨域配置
server: {
//使用IP能访问
// host: '0.0.0.0',
// 热更新
hmr: true,
//自定义代理规则
proxy: {
// 选项写法
'/api': {
target: env.VITE_APP_BASEURL,
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, '')
}
}
}
})
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/polar-user/points-mall---h5.git
git@gitee.com:polar-user/points-mall---h5.git
polar-user
points-mall---h5
积分商城H5
development

搜索帮助

0d507c66 1850385 C8b1a773 1850385