赞
踩
需求是将一个vue3项目部署到tomcat中,需要改动一些代码以适配。假设希望访问路径是http://localhost:8080/mypath。
修改route/index.js,主要将base和createWebHistory里改成自己的路径mypath
const router = createRouter({
mode: 'history',
base: '/mypath/',
history:createWebHistory('/mypath/'),
routes
})
如果是export default defineConfig形式,添加base: './'即可。如下所示
export default defineConfig({
base: './'
})
如果是module.exports,则修改publicPath。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。