mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-12-25 12:52:27 +03:00
10 lines
302 B
JavaScript
10 lines
302 B
JavaScript
import { Elm } from "./Main.elm";
|
|
import * as ElmDebugger from "elm-debug-transformer";
|
|
|
|
if (process.env.NODE_ENV === "development") {
|
|
// Only runs in development and will be stripped from production build.
|
|
// See https://parceljs.org/production.html
|
|
ElmDebugger.register();
|
|
}
|
|
Elm.Main.init({});
|