注释:
好记性不如烂笔头,仅作收藏用。
步骤:
- npm run build生成打包文件在项目dist目录中;
- 复制dist目录内内容至Tomcat服务器webapps/ROOT文件夹下(无ROOT文件夹则创建);
- 在Tomcat conf文件下编辑web.xml,文件尾部添加:
...
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
</welcome-file-list>
<error-page>
<error-code>404</error-code>
<location>/index.html</location>
</error-page>
</web-app>
- 启动Tomcat, 浏览器输入localhost:8080即可访问
来源:
https://www.cnblogs.com/donz/p/10694041.html