1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-24 12:49:19 +00:00

Revert "Use ES modules and dynamic import for Webpack latest builds (… (#16679)

Revert "Use ES modules and dynamic import for Webpack latest builds (#16620)"

This reverts commit 7b350e31dd.
This commit is contained in:
Bram Kragten
2023-05-30 23:56:38 +02:00
committed by GitHub
parent 5218e1352e
commit d914fb0cfc
4 changed files with 3 additions and 16 deletions

View File

@@ -1,13 +1,8 @@
import webpack from "../build-scripts/webpack.cjs";
const config = webpack.createAppConfig({
export default webpack.createAppConfig({
isProdBuild: false,
latestBuild: true,
isStatsBuild: false,
isTestBuild: true,
});
// instant-mocha forces a CJS library, so cannot output ESM
config.output.module = false;
export default config;