将通过vue-cli创建的vue项目部署到nginx上
1、在vscode新建终端,使用npm run build打包项目,打包完成会在根目录下生成dist文件夹2、将nginx文件夹下的html文件夹内的内容删除替换为dist文件夹下的额文件或者打开nginx.conf配置文件(位于conf文件夹下),将server内的location / {root testtwe;index index.html index.htm;}root后的内容替换为新建
·
1、在vscode新建终端,使用npm run build打包项目,打包完成会在根目录下生成dist文件夹
2、将nginx文件夹下的html文件夹内的内容删除替换为dist文件夹下的额文件或者打开nginx.conf配置文件(位于conf文件夹下),将server内的
location / {
root testtwe;
index index.html index.htm;
}
root后的内容替换为新建的文件夹,并将dist文件夹下的内容复制到新文件夹下
3、通过 start nginx启动,打开localhost/#/ 即可看到项目
更多推荐
已为社区贡献1条内容
所有评论(0)