diff options
author | William Carroll <wpcarro@gmail.com> | 2020-03-24T12·29+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-03-24T12·29+0000 |
commit | 57b58e9b2fe2a1b178f42bc16d7c5ab1f8da9cdd (patch) | |
tree | f73b035061d0d1cdf9e7cf1545e2b48d654065b8 /website/sandbox/nut-score/index.html | |
parent | 2551b41d735cb1446fa5ecae496d079ca4741e46 (diff) |
Move nut-score into website/sandbox
Also move some .gitignore entries from the top-level .gitignore into a subdirectory .gitignore.
Diffstat (limited to 'website/sandbox/nut-score/index.html')
-rw-r--r-- | website/sandbox/nut-score/index.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/website/sandbox/nut-score/index.html b/website/sandbox/nut-score/index.html new file mode 100644 index 000000000000..5f1ac3926e02 --- /dev/null +++ b/website/sandbox/nut-score/index.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <title>ReasonReact Examples</title> +</head> +<body> + <script> + // stub a variable ReactJS checks. ReactJS assumes you're using a bundler, NodeJS or similar system that provides it the `process.env.NODE_ENV` variable. + window.process = { + env: { + NODE_ENV: 'development' + } + }; + </script> + <div id="mount"></div> + <!-- This is https://github.com/marijnh/moduleserve, the secret sauce that allows us not need to bundle things during development, and have instantaneous iteration feedback, without any hot-reloading or extra build pipeline needed. --> + <script src="/moduleserve/load.js" data-module="/src/Index.bs.js"></script> + <!-- Our little watcher. Super clean. Check it out! --> + <script src="/watcher.js"></script> +</body> +</html> |