diff options
author | Guillermo Ramos | 2025-02-21 17:33:00 +0100 |
---|---|---|
committer | Guillermo Ramos | 2025-02-21 17:47:46 +0100 |
commit | 484d62913300d6f3ce73522affc91ff6384d11d9 (patch) | |
tree | 4ab24d6ffa0b09a9ceba198d58cf5fa32248f5e6 /front | |
parent | e82162fbaf16703d9e9b589e7eb2ff8c62713838 (diff) | |
download | hiccup-484d62913300d6f3ce73522affc91ff6384d11d9.tar.gz |
Compile Elm to js instead of html
Diffstat (limited to 'front')
-rw-r--r-- | front/.gitignore | 1 | ||||
-rw-r--r-- | front/src/Main.elm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/front/.gitignore b/front/.gitignore index e453cba..9e98d05 100644 --- a/front/.gitignore +++ b/front/.gitignore @@ -1,2 +1,3 @@ elm-stuff index.html +main.js diff --git a/front/src/Main.elm b/front/src/Main.elm index 9139158..7f6522b 100644 --- a/front/src/Main.elm +++ b/front/src/Main.elm @@ -1,4 +1,4 @@ -module Main exposing (..) +module Main exposing (main) import Round import Browser |