Skip to content

Commit

Permalink
Use Vite
Browse files Browse the repository at this point in the history
  • Loading branch information
Nebelung-Dev committed Mar 27, 2023
1 parent bc195b6 commit 075107c
Show file tree
Hide file tree
Showing 40 changed files with 6,718 additions and 31,228 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
- [x] Obfuscate more text

### Next Update
- [x] Use Vite
- [x] Fix Aero
- [x] Update docs
- [x] Move roadmap
Expand Down
20 changes: 11 additions & 9 deletions public/index.html → index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,34 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/logos/logo.svg" />
<link rel="icon" href="/logos/logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logos/logo.svg" />
<link rel="apple-touch-icon" href="/logos/logo.svg" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<link rel="manifest" href="/manifest.json" />

<script src="%PUBLIC_URL%/uv/uv.bundle.js" defer></script>
<script src="%PUBLIC_URL%/uv/uv.config.js" defer></script>
<script src="%PUBLIC_URL%/stomp/bootstrapper.js" defer></script>
<script src="%PUBLIC_URL%/dip/dip.config.js" defer></script>
<script src="/uv/uv.bundle.js" defer></script>
<script src="/uv/uv.config.js" defer></script>
<script src="/stomp/bootstrapper.js" defer></script>
<script src="/dip/dip.config.js" defer></script>
<!--
Notice the use of %PUBLIC_URL% in the tags above.
Notice the use of in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
Unlike "/favicon.ico" or "favicon.ico", "/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>

<script type="module" src="/src/index.jsx"></script>
</body>
</html>
Loading

0 comments on commit 075107c

Please sign in to comment.