mirror of
https://github.com/status-im/wakuconnect-chat-sdk.git
synced 2025-01-12 13:14:40 +00:00
a083d3251b
* install `js-waku@^0.24.0` * install `js-waku@^0.25.0` * resolve some breaking changes * add timeout * upgrade `eslint-import-resolver-typescript` * add `process.env.VITEST` condition * increase timeout * fixup * ignore `emitSelf` * replace `parcel` with `vite` * update `.gitignore` * change `dev` npm script * fix favicon href * load `.env` files * remove 'alias" * add `preview` * upgrade vite * set `target`s in `vite.config.ts` * upgrade `@vitejs/plugin-react` * remove comment * Update package.json * Update vite.config.ts
25 lines
724 B
HTML
25 lines
724 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://unpkg.com/tailwindcss@3.0.0/src/css/preflight.css"
|
|
/>
|
|
<link rel="stylesheet" href="./styles.css" />
|
|
<title>Status Communities</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="./src/index.tsx"></script>
|
|
</body>
|
|
</html>
|