Aktualisiere Docker-Images auf die neuesten Versionen und passe die Pfade in der esbuild-Konfiguration an

This commit is contained in:
2025-03-27 16:59:52 +00:00
parent 7a6a2cbd22
commit cf1acc1d80
3 changed files with 5 additions and 10 deletions

View File

@@ -1,14 +1,10 @@
import App from "./App.svelte"
import { hydrate } from "svelte"
let appContainer = document?.getElementById("appContainer")
const hydrate = true //import.meta?.env?.MODE !== "development"
console.log("Features: ", { hydrate })
const app = new App({
target: appContainer,
props: {},
hydrate,
})
const app = hydrate(App, { target: appContainer })
export default app