Merge pull request #100 from mirumee/change-default-static-url
Change default STATIC_URL value
This commit is contained in:
commit
4ec7508b97
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ module.exports = (env, argv) => {
|
||||||
let output;
|
let output;
|
||||||
|
|
||||||
if (!devMode) {
|
if (!devMode) {
|
||||||
const publicPath = process.env.STATIC_URL || "/static/";
|
const publicPath = process.env.STATIC_URL || "/";
|
||||||
output = {
|
output = {
|
||||||
path: resolve(dashboardBuildPath),
|
path: resolve(dashboardBuildPath),
|
||||||
filename: "[name].[chunkhash].js",
|
filename: "[name].[chunkhash].js",
|
||||||
|
|
Loading…
Reference in a new issue