about summary refs log tree commit diff
path: root/package.json
diff options
context:
space:
mode:
authorunarist <m.unarist@gmail.com>2017-06-25 19:52:42 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-06-25 12:52:42 +0200
commit3d4e21f1ecd001d82e8363eb7d4086c7fc6064ba (patch)
tree8a10fe2055188181110e017afa5bcaa7e9556164 /package.json
parent68dca26a5d36eacb7d7e691635a14b6562ba7cf1 (diff)
Don't set ASSET_HOST on build:development (#3936)
Setting ASSET_HOST to `http://0.0.0.0:8080` makes urls in manifest.json to
be invalid, e.g. `http://0.0.0.0:8080/packs/application.js`.

Anyway, we don't need set this on build:development because assets would
be delivered from same origin in development (and w/o dev-server).
Diffstat (limited to 'package.json')
-rw-r--r--package.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json
index 8cbcea92b..d1fd22fb5 100644
--- a/package.json
+++ b/package.json
@@ -3,7 +3,7 @@
   "license": "AGPL-3.0",
   "scripts": {
     "postversion": "git push --tags",
-    "build:development": "cross-env RAILS_ENV=development ASSET_HOST=http://0.0.0.0:8080 ./bin/webpack",
+    "build:development": "cross-env RAILS_ENV=development ./bin/webpack",
     "build:production": "cross-env RAILS_ENV=production ./bin/webpack",
     "manage:translations": "node ./config/webpack/translationRunner.js",
     "start": "rimraf ./tmp/streaming && babel ./streaming/index.js --out-dir ./tmp && node ./tmp/streaming/index.js",