1
0
mirror of https://github.com/home-assistant/frontend.git synced 2026-05-08 17:28:46 +01:00

Temp patch to fix Rollup build (#15631)

This commit is contained in:
Paulus Schoutsen
2023-02-28 04:54:27 -05:00
committed by GitHub
parent 17e6e132d1
commit 6af57fa2cd
+8 -1
View File
@@ -43,7 +43,14 @@ const createRollupConfig = ({
preserveEntrySignatures: false,
plugins: [
ignore({
files: bundle.emptyPackages({ latestBuild }),
files: bundle
.emptyPackages({ latestBuild })
// TEMP HACK: Makes Rollup build work again
.concat(
require.resolve(
"@webcomponents/scoped-custom-element-registry/scoped-custom-element-registry.min"
)
),
}),
resolve({
extensions,