我下载了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做了限制吗?还是我访问的路由不对呢?
const router = new VueRouter({
hashbang: true,
history: false,//这个参数改为false就可以了
saveScrollPosition: true,
suppressTransitionError: true
})