1
0
mirror of https://github.com/home-assistant/frontend.git synced 2026-04-24 19:00:13 +01:00

Remove rollup build configuration (#22181)

Rollup remove
This commit is contained in:
Simon Lamon
2024-11-08 09:19:52 +01:00
committed by GitHub
parent f396be2ed7
commit ee79c3a983
28 changed files with 172 additions and 998 deletions

View File

@@ -226,13 +226,12 @@ module.exports.config = {
return {
name: "frontend" + nameSuffix(latestBuild),
entry: {
"service-worker":
!env.useRollup() && !latestBuild
? {
import: "./src/entrypoints/service-worker.ts",
layer: "sw",
}
: "./src/entrypoints/service-worker.ts",
"service-worker": !latestBuild
? {
import: "./src/entrypoints/service-worker.ts",
layer: "sw",
}
: "./src/entrypoints/service-worker.ts",
app: "./src/entrypoints/app.ts",
authorize: "./src/entrypoints/authorize.ts",
onboarding: "./src/entrypoints/onboarding.ts",