server {
...
location / {
alias /static/folder;
try_files /index.html /index.html;
}
location /assets {
alias /static/folder/assets;
}
location ~ .+\.(css|js) {
alias /static/folder;
}
}
scripts: {
"build": "webpack --config webpack.config.js; cp ./src/dynamic-config.json ./dist/."
}