vue.config.js配置

配置参考 | Vue CLI

publicPath: process.env.NODE_ENV === 'production' ? './' : '/'

针对nginx的配置

listen       8888;
    listen  [::]:80;
    server_name  localhost;

    #charset koi8-r;
    #access_log  /usr/local/nginx/logs/host.access.log  main;

    location / {
        root   html/webviewer; //  项目根路径
        try_files $uri $uri/ @router;#需要指向下面的@router否则会出现vue的路由在nginx中刷新出现404
        index  index.html index.htm;
    }

        #对应上面的@router,主要原因是路由的路径资源并不是一个真实的路径,所以无法找到具体的文件
        #因此需要rewrite到index.html中,然后交给路由在处理请求资源
    location @router {
        rewrite ^.*$ /index.html last;
    }

Logo

前往低代码交流专区

更多推荐