修改vue生成参数

1. index.html文件修改
    添加 <meta base="/子目录名/">

2. config/index.js文件修改
    修改 assetsPublicPath: '/子目录名/'

3.src/router/index.js文件修改
    添加 base: '/子目录名/'

Nginx配置

        location /子目录名 {
                try_files $uri $uri/ @router;
                }

        location @router  {
                rewrite ^.*$ /子目录名/index.html last;
                }
Logo

前往低代码交流专区

更多推荐