vue3打包部署nginx刷新404,nginx.conf文件配置
1.找到nginx,conf文件,编辑2.添加配置server {listen2000;server_namelocalhost;index index.html;root../../wwwroot/www.vite-vue3-temptale.com; // 项目目录location / {try_files $uri $uri//index.html;}}...
·
1.找到nginx,conf文件,编辑
2.添加配置
server {
listen 2000;
server_name localhost;
index index.html;
root ../../wwwroot/www.vite-vue3-temptale.com; // 项目目录
location / {
try_files $uri $uri/ /index.html;
}
}
更多推荐
已为社区贡献5条内容
所有评论(0)