Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
6b2e5e34
Commit
6b2e5e34
authored
Feb 01, 2017
by
Mike Greiling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure webpack dev server port via environment variable
parent
a2d837a3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
10 deletions
+2
-10
config/webpack.config.js
config/webpack.config.js
+2
-10
No files found.
config/webpack.config.js
View file @
6b2e5e34
...
...
@@ -6,18 +6,10 @@ var webpack = require('webpack');
var
StatsPlugin
=
require
(
'
stats-webpack-plugin
'
);
var
CompressionPlugin
=
require
(
"
compression-webpack-plugin
"
);
var
ROOT_PATH
=
path
.
resolve
(
__dirname
,
'
..
'
);
var
IS_PRODUCTION
=
process
.
env
.
NODE_ENV
===
'
production
'
;
var
IS_DEV_SERVER
=
process
.
argv
[
1
].
indexOf
(
'
webpack-dev-server
'
)
!==
-
1
;
var
ROOT_PATH
=
path
.
resolve
(
__dirname
,
'
..
'
);
// must match config.webpack.dev_server.port
var
DEV_SERVER_PORT
;
try
{
DEV_SERVER_PORT
=
parseInt
(
fs
.
readFileSync
(
'
../webpack_port
'
),
10
);
}
catch
(
e
)
{
DEV_SERVER_PORT
=
3808
;
}
var
DEV_SERVER_PORT
=
parseInt
(
process
.
env
.
DEV_SERVER_PORT
,
10
)
||
3808
;
var
config
=
{
context
:
path
.
join
(
ROOT_PATH
,
'
app/assets/javascripts
'
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment