We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc570ec commit 8844084Copy full SHA for 8844084
2 files changed
gulpfile.js
@@ -106,7 +106,7 @@
106
107
function serve() {
108
return gulp.src('.', {read: false})
109
- .pipe(shell(['npx http-server -c-1']));
+ .pipe(shell(['npx http-server -p 8080 -c-1']));
110
}
111
112
gulp.task('clean', clean);
rollup.config.js
@@ -74,7 +74,7 @@ export default {
74
commonjs(),
75
isWatch && serve({
76
contentBase: '',
77
- port: 8045,
+ port: 8080,
78
open: false,
79
}),
80
isWatch && livereload('dist'),
0 commit comments