From bd7695ff959938493cce94626ede14b116e6ce0a Mon Sep 17 00:00:00 2001 From: Kurtil Date: Thu, 4 Jun 2020 08:37:27 +0200 Subject: [PATCH] update rollup serve port from 8080 to 8091 --- rollup.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rollup.config.js b/rollup.config.js index 3a6ca99..13656a0 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -17,7 +17,7 @@ if (isProduction) { ); } else { plugins.push( - serve({ open: true, port: 8080, contentBase: '' }), + serve({ open: true, port: 8091, contentBase: '' }), livereload('dist') ); }