package.json
"scripts": {
"build": "vite build && mv ../think/public/static/wxmp/index.html ../think/view/wxmp/home_index.html", //移动index.html 到指定位置
}
vite.config.js
base: '/static/wxmp', // 修改静态资源路径
build: {
outDir: '../think/public/static/wxmp', //打包到的位置
minify: true, //是否压缩
},