taylorchen709 / vue-admin

admin template based on vuejs2 and element.
https://taylorchen709.github.io/vue-admin/
MIT License
6.62k stars 2.69k forks source link

请教如何部署到IIS #95

Closed WinChance closed 6 years ago

WinChance commented 6 years ago

本人刚入门,npm run dev可以用IE 11正常浏览。可是本项目用npm run build,复制dist目录的文件到IIS网站后,按官网的方式配置了history模式。但是浏览器打开还是一片空白。有哪位大神可以指教一下,万分感谢!!!

MinosIE commented 6 years ago

没有报错信息吗? 上几个截图看看

lsqswl commented 6 years ago

assetsPublicPath: '/vue-admin/', 要改为 assetsPublicPath: '/', 就可以了,不然build的路径不对。

artdong commented 6 years ago

assetsPublicPath: '/vue-admin/‘ 改成你自己的项目名称 你可以参考我这个项目,也是这个项目基础上做的https://github.com/alex-0407/vue2-admin-grace @WinChance

WinChance commented 6 years ago

谢谢!!