diff options
author | William Carroll <wpcarro@gmail.com> | 2020-04-17T23·10+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-04-17T23·10+0100 |
commit | 39d084e493c80952d59cbcc92ea67f344e543298 (patch) | |
tree | e6c867937521644c7d5ffb0f4d4cb8bb2da53ae1 /website/sandbox/chord-drill-sergeant/index.html | |
parent | 277ad983d4d9caf51679d3c1c615ecc7134539be (diff) |
Use elm2nix to (attempt to) deploy learnpianochords.app
After a few failed attempts at deploying my Elm application on NixOS, I'm trying elm2nix, which some NixOS and Elm users created to attempt to solve some of the issues that I ran into earlier today. Elm tries to write to $HOME, which NixOS doesn't like. I typically prefer to avoid things like cabal2nix, elm2nix, node2nix because I don't like the workflow that they suggest, but I'm so eager to deploy this application, that I'm trying it.
Diffstat (limited to 'website/sandbox/chord-drill-sergeant/index.html')
-rw-r--r-- | website/sandbox/chord-drill-sergeant/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/sandbox/chord-drill-sergeant/index.html b/website/sandbox/chord-drill-sergeant/index.html index d2218ea1905a..861ed1479522 100644 --- a/website/sandbox/chord-drill-sergeant/index.html +++ b/website/sandbox/chord-drill-sergeant/index.html @@ -4,7 +4,7 @@ <meta charset="UTF-8" /> <title>Chord Drill Sergeant</title> <link rel="stylesheet" href="./output.css" /> - <script src="./elm.js"></script> + <script src="./Main.min.js"></script> </head> <body class="font-serif"> <div id="mount"></div> |