vue前端部署

编译文件

yarn install  安装依赖模块
yarn run dev 开发模式运行
yarn run build 编译源码

编译结果

1 index.html 页面主入口
2 static 静态资源
两个文件都属于静态资源 直接放在任意服务器中即可访问,无需重启服务器;
更换版本时,只需要替换上面 两个文件即可

vue router history 模式(即URL去#)部署

tomcat服务器

需在 index.html 和 static 同级目录下建文件 路径

 WEB-INF/web.xml 

文件内容




  webapp
  
     webapp
  
    
   404  
   /index.html  
  
[root@localhost WEB-INF]# 

其他类型服务器,请参考 https://router.vuejs.org/zh/guide/essentials/history-mode.html

你可能感兴趣的:(vue前端部署)