docs: remove app hydration

This commit is contained in:
Eric Liu 2020-10-14 14:42:45 -07:00
commit 5eab3474db
3 changed files with 13 additions and 17 deletions

View file

@ -1,8 +1,5 @@
import App from "./App.svelte";
const app = new App({
target: document.getElementById("app"),
hydrate: process.env.NODE_ENV === "production",
});
const app = new App({ target: document.body });
export default app;