Skip to content

Commit

Permalink
chore: update livereload plugin port (#948)
Browse files Browse the repository at this point in the history
Co-authored-by: Galen Kistler <[email protected]>
  • Loading branch information
fcjack and gtk-grafana authored Dec 10, 2024
1 parent 97013d2 commit 003da41
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion webpack.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import LiveReloadPlugin from 'webpack-livereload-plugin';
import type { Configuration } from 'webpack';
import { merge } from 'webpack-merge';
import grafanaConfig from './.config/webpack/webpack.config';
Expand All @@ -12,7 +13,14 @@ const config = async (env: any): Promise<Configuration> => {
},
plugins: [
// new BundleAnalyzerPlugin()
]
new LiveReloadPlugin({
port: 35828,
protocol: 'http',
hostname: 'localhost',
delay: 1000,
appendScriptTag: true,
}),
],
});
};

Expand Down

0 comments on commit 003da41

Please sign in to comment.