Disable hot-reloading for e2e CI tests

Signed-off-by: Frank Showalter <fshowalter@gmail.com>
This commit is contained in:
Frank Showalter
2021-04-13 10:45:52 -04:00
parent b9521b83ed
commit 5abace95ac
+1 -1
View File
@@ -43,7 +43,7 @@ export async function serveBundle(options: ServeOptions) {
const compiler = webpack(config);
const server = new WebpackDevServer(compiler, {
hot: true,
hot: !process.env.CI,
contentBase: paths.targetPublic,
contentBasePublicPath: config.output?.publicPath,
publicPath: config.output?.publicPath,