nginx代理配置

1. nginx
ocation /abc{

	root   html;
	index  index.html index.htm;
	if (!-e $request_filename) {
	    rewrite ^/(.*) /abc/index.html last;
	    break;
	}
    }

vue项目中的配置

在vue项目中 config/index.js 下设置assetsPublicPath:‘/abc/’

Logo

前往低代码交流专区

更多推荐