1 Star 1 Fork 0

小丸子 / 金融理财小程序

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.js 940 Bytes
一键复制 编辑 原始数据 按行查看 历史
小丸子 提交于 2024-01-05 22:37 . 初始化
import {defineConfig} from "vite";
import uni from "@dcloudio/vite-plugin-uni";
import path from "path";
import {visualizer} from "rollup-plugin-visualizer";
// https://vitejs.dev/config/
export default defineConfig({
build: {
// sourcemap: true,
},
plugins: [
uni(),
// visualizer(
// {
// // emitFile: true,
// // filename: "stats.html",
// open: true, // 打包后自动打开页面
// gzipSize: true, // 查看 gzip 压缩大小
// brotliSize: true // 查看 brotli 压缩大小
// }
// )
],
resolve: {
alias: {
"@": path.resolve(__dirname, "src"), // 相对路径别名配置,使用 @ 代替 src
},
},
css: {
preprocessorOptions: {
less: {
javascriptEnabled: true,
},
},
},
});
1
https://gitee.com/xiaowanzi0002/wealth-management-and-finance.git
git@gitee.com:xiaowanzi0002/wealth-management-and-finance.git
xiaowanzi0002
wealth-management-and-finance
金融理财小程序
master

搜索帮助