For further reference, please consider the following sections:
install nginx
npm run build vue-development
compile development
run java -Dfile.encoding=UTF-8 -jar development-0.0.1-SNAPSHOT.jar
edit nginx.conf
server {
listen 8088;
server_name localhost;
location / {
root E:\WebStormProjects\vue-development\dist;
index index.html index.htm;
}
location /pcp/ {
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:8090/pcp/;
}
}
run nginx