Merge pull request #100 from mirumee/change-default-static-url

Change default STATIC_URL value
This commit is contained in:
Dominik Żegleń 2019-08-22 10:53:58 +02:00 committed by GitHub
commit 4ec7508b97
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -33,7 +33,7 @@ module.exports = (env, argv) => {
let output;
if (!devMode) {
const publicPath = process.env.STATIC_URL || "/static/";
const publicPath = process.env.STATIC_URL || "/";
output = {
path: resolve(dashboardBuildPath),
filename: "[name].[chunkhash].js",