Skip to content

Commit ec127b8

Browse files
icfantvFoxandxss
authored andcommittedJun 29, 2016
chore(demo): change demo server port to 9090 (ng-bootstrap#303)
1 parent 18a572e commit ec127b8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ gulp.task('clean:demo-cache', function() { return del('.publish/'); });
143143

144144
gulp.task(
145145
'demo-server', ['generate-docs'],
146-
shell.task(['webpack-dev-server --config webpack.demo.js --hot --inline --progress']));
146+
shell.task(['webpack-dev-server --port 9090 --config webpack.demo.js --hot --inline --progress']));
147147

148148
gulp.task(
149149
'build:demo', ['clean:demo', 'generate-docs'],

‎webpack.demo.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ module.exports = function makeWebpackConfig() {
5353
*/
5454
config.output = {
5555
path: root('demo', 'dist'),
56-
publicPath: isProd ? '/' : 'http://localhost:8080/',
56+
publicPath: isProd ? '/' : 'http://localhost:9090/',
5757
filename: isProd ? 'js/[name].[hash].js' : 'js/[name].js',
5858
chunkFilename: isProd ? '[id].[hash].chunk.js' : '[id].chunk.js'
5959
};

0 commit comments

Comments
 (0)
Please sign in to comment.