This repository has been archived by the owner on Sep 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: replace bundler from react-script to Vite
- Loading branch information
1 parent
a2faba6
commit 25d1dfb
Showing
22 changed files
with
4,196 additions
and
6,158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,3 +22,6 @@ | |
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Generated subgraph (GraphQL) client | ||
src/subgraph/client |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<link rel="icon" href="/favicon.ico" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="theme-color" content="#3A78FF" /> | ||
<meta | ||
name="description" | ||
content="Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain." | ||
/> | ||
<link | ||
rel="icon" | ||
type="image/png" | ||
sizes="192x192" | ||
href="/android-chrome-192x192.png" | ||
/> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" /> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" /> | ||
|
||
<meta name="msapplication-square70x70logo" content="/70x70.png" /> | ||
<meta name="msapplication-square144x144logo" content="/144x144.png" /> | ||
<meta name="msapplication-square150x150logo" content="/150x150.png" /> | ||
<meta name="msapplication-square310x310logo" content="/310x310.png" /> | ||
<meta name="msapplication-wide310x150logo" content="/310x150.png" /> | ||
<meta name="msapplication-TileImage" content="/144x144.png" /> | ||
<meta name="msapplication-TileColor" content="#3A78FF" /> | ||
|
||
<link rel="apple-touch-icon" type="image/png" href="/apple-touch-icon.png" /> | ||
<link rel="apple-touch-icon" type="image/png" sizes="57x57" href="/57x57.png" /> | ||
<link rel="apple-touch-icon" type="image/png" sizes="60x60" href="/60x60.png" /> | ||
<link rel="apple-touch-icon" type="image/png" sizes="72x72" href="/72x72.png" /> | ||
<link rel="apple-touch-icon" type="image/png" sizes="76x76" href="/76x76.png" /> | ||
<link rel="apple-touch-icon" type="image/png" sizes="114x114" href="/114x114.png" /> | ||
<link rel="apple-touch-icon" type="image/png" sizes="120x120" href="/120x120.png" /> | ||
<link rel="apple-touch-icon" type="image/png" sizes="144x144" href="/144x144.png" /> | ||
<link rel="apple-touch-icon" type="image/png" sizes="152x152" href="/152x152.png" /> | ||
<link rel="apple-touch-icon" type="image/png" sizes="180x180" href="/180x180.png" /> | ||
<!-- | ||
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="/manifest.json" /> | ||
<!-- | ||
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", "/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`. | ||
--> | ||
<title>Venus Protocol</title> | ||
<meta | ||
name="keywords" | ||
content="venus, venus protocol, defi, borrow, lend, crypto, blockchain, bsc, bnb, bnb chain, decentralized finance" | ||
/> | ||
|
||
<meta name="format-detection" content="telephone=no" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
|
||
<meta name="twitter:site" content="@venusprotocol" /> | ||
<meta name="twitter:creator" content="@venusprotocol" /> | ||
<meta name="twitter:title" content="Venus Protocol" /> | ||
<meta | ||
name="twitter:description" | ||
content="Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain." | ||
/> | ||
<meta name="twitter:card" content="summary_large_image" /> | ||
<meta name="twitter:image" content="/share.png" /> | ||
<meta name="theme-color" content="#3A78FF" /> | ||
|
||
<meta property="og:title" content="Venus Protocol" /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:url" content="https://venus.io/" /> | ||
<meta property="og:image" content="/share.png" /> | ||
<meta | ||
property="og:description" | ||
content="Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain." | ||
/> | ||
|
||
<link href="https://venus.io/" rel="canonical" /> | ||
</head> | ||
<body> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<div id="root"></div> | ||
<!-- | ||
This HTML file is a template. | ||
If you open it directly in the browser, you will see an empty page. | ||
You can add webfonts, meta tags, or analytics to this file. | ||
The build step will place the bundled scripts into the <body> tag. | ||
To begin the development, run `npm start` or `yarn start`. | ||
To create a production bundle, use `npm run build` or `yarn build`. | ||
--> | ||
|
||
<script type="module" src="/src/index.tsx"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.