我下载了https://github.com/eteplus/vu... 项目,运行npm run dev 时可以访问httpp://localhost:8080/home。
运行npm run build时 使用http-server -p 8081 只能在首页httpp://localhost:8081访问到其它页面,直接访问httpp://localhost:8081/home是访问不到。
是webpack做了限制吗?还是我访问的路由不对呢?
我下载了https://github.com/eteplus/vu... 项目,运行npm run dev 时可以访问httpp://localhost:8080/home。
运行npm run build时 使用http-server -p 8081 只能在首页httpp://localhost:8081访问到其它页面,直接访问httpp://localhost:8081/home是访问不到。
是webpack做了限制吗?还是我访问的路由不对呢?
2 回答1k 阅读✓ 已解决
1 回答1.1k 阅读
1 回答1k 阅读
696 阅读
676 阅读
376 阅读
const router = new VueRouter({
hashbang: true,
history: false,//这个参数改为false就可以了
saveScrollPosition: true,
suppressTransitionError: true
})