diff options
author | Mike Greiling <mike@pixelcog.com> | 2017-01-31 15:28:14 -0600 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2017-01-31 15:28:14 -0600 |
commit | 6fffdf7f2e72128eac53adfd734deb4fad8421fa (patch) | |
tree | 8a994f2a9267f0eaea6ae9bb410d7059cee065b1 /config | |
parent | 5fcbe12730960e93b1d3afe6be846eb9ef570d32 (diff) | |
download | gitlab-ce-6fffdf7f2e72128eac53adfd734deb4fad8421fa.tar.gz |
remove dev-server config from development environment
Diffstat (limited to 'config')
-rw-r--r-- | config/environments/development.rb | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/config/environments/development.rb b/config/environments/development.rb index f8cf196bc7c..45a8c1add3e 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -1,6 +1,4 @@ Rails.application.configure do - WEBPACK_DEV_PORT = `cat ../webpack_port 2>/dev/null || echo '3808'`.to_i - # Settings specified here will take precedence over those in config/application.rb # In the development environment your application's code is reloaded on @@ -24,11 +22,6 @@ Rails.application.configure do # Only use best-standards-support built into browsers config.action_dispatch.best_standards_support = :builtin - # Enable webpack dev server - config.webpack.dev_server.enabled = true - config.webpack.dev_server.port = WEBPACK_DEV_PORT - config.webpack.dev_server.manifest_port = WEBPACK_DEV_PORT - # Do not compress assets config.assets.compress = false |