使用vite build 后移动 index.html 到后端目录中

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, //是否压缩

},

 

你可能感兴趣的:(html,前端)