diff options
author | 2021-06-14 19:45:51 -0700 | |
---|---|---|
committer | 2021-06-14 19:45:51 -0700 | |
commit | 7eb887edd527713214790198de3ccfe828a5768d (patch) | |
tree | d0a782385e6aeccf62b698fe5c15f1833aba3719 /demos/simple-react/public/index.html | |
parent | 122ef023dd642af830a5419b6172640ebf8af841 (diff) | |
download | bun-7eb887edd527713214790198de3ccfe828a5768d.tar.gz bun-7eb887edd527713214790198de3ccfe828a5768d.tar.zst bun-7eb887edd527713214790198de3ccfe828a5768d.zip |
HMR crashily works, started working on CSS Scanner
Former-commit-id: d0f91082fcc8da17d224acb5432339c5d817e1c2
Diffstat (limited to 'demos/simple-react/public/index.html')
-rw-r--r-- | demos/simple-react/public/index.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/demos/simple-react/public/index.html b/demos/simple-react/public/index.html index 91ced42dd..d441dfdf1 100644 --- a/demos/simple-react/public/index.html +++ b/demos/simple-react/public/index.html @@ -1,9 +1,8 @@ <!DOCTYPE html> <html> - <head> - <script src="./src/index.tsx" type="module"></script> - </head> + <head> </head> <body> <div id="reactroot"></div> + <script src="./src/index.tsx" async type="module"></script> </body> </html> |