1 Star 0 Fork 70

太阳YY/vue3+vant4-h5

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vue.config.js 857 Bytes
一键复制 编辑 原始数据 按行查看 历史
奔跑的蜗牛 提交于 2023-05-21 22:19 . 国际化进行模块化处理
const localesPath = "./getLocalesModel";
const modelPath = "./src/locales/modules"
const { getLangJson } = require(localesPath);
getLangJson(modelPath)
module.exports = {
lintOnSave: false,
productionSourceMap: false,
publicPath: "./",
transpileDependencies: [],
devServer: {
host: "localhost",
proxy: {
"/app": {
target: process.env.VUE_APP_BASE_URL, //代理请求地址
secure: true,
changeOrigin: true,
pathRewrite: {
"^/app": "/app",
},
},
},
},
chainWebpack: (config) => {
config.resolve.symlinks(true); // 修复热更新失效
config.resolve.alias.set("vue-i18n", "vue-i18n/dist/vue-i18n.cjs.js"); // 去除国际化警告
},
configureWebpack: (config) => {
const plugins = [];
config.plugins = [...config.plugins, ...plugins];
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/sun-330/vue3-vant3-h5.git
[email protected]:sun-330/vue3-vant3-h5.git
sun-330
vue3-vant3-h5
vue3+vant4-h5
master

搜索帮助