2 Star 7 Fork 1

cshaptx4869/vue3-uniapp-template

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.js 882 Bytes
一键复制 编辑 原始数据 按行查看 历史
cshaptx4869 提交于 2024-11-22 16:39 . refactor: :recycle:修改README.md
import { defineConfig, loadEnv } from "vite";
import uni from "@dcloudio/vite-plugin-uni";
import pkg from "./package.json";
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, __dirname);
// console.log(env);
return {
build: {
minify: "terser",
terserOptions: {
compress: {
drop_console: true,
drop_debugger: true,
},
},
},
define: {
__APP_INFO__: JSON.stringify({
pkg,
buildTimestamp: Date.now(),
}),
},
plugins: [uni()],
server: {
port: Number.parseInt(env.VITE_APP_PORT, 10),
proxy: {
[env.VITE_APP_PROXY_PREFIX]: {
changeOrigin: true,
target: env.VITE_APP_BASE_URL,
rewrite: (path) =>
path.replace(new RegExp("^" + env.VITE_APP_PROXY_PREFIX), ""),
},
},
},
};
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cshaptx4869/vue3-uniapp-template.git
git@gitee.com:cshaptx4869/vue3-uniapp-template.git
cshaptx4869
vue3-uniapp-template
vue3-uniapp-template
main

搜索帮助