|
2 | 2 | <html lang="en"> |
3 | 3 | <head> |
4 | 4 | <meta charset="utf-8" /> |
5 | | - <link rel="icon" sizes="16x16" href="%PUBLIC_URL%/favicon-16x16.png" /> |
6 | | - <link rel="icon" sizes="32x32" href="%PUBLIC_URL%/favicon-32x32.png" /> |
7 | | - <link rel="icon" sizes="192x192" href="%PUBLIC_URL%/android-chrome-192x192.png" /> |
8 | | - <link rel="icon" sizes="512x512" href="%PUBLIC_URL%/android-chrome-512x512.png" /> |
| 5 | + <link rel="icon" sizes="16x16" href="/favicon-16x16.png" /> |
| 6 | + <link rel="icon" sizes="32x32" href="/favicon-32x32.png" /> |
| 7 | + <link rel="icon" sizes="192x192" href="/android-chrome-192x192.png" /> |
| 8 | + <link rel="icon" sizes="512x512" href="/android-chrome-512x512.png" /> |
9 | 9 |
|
10 | 10 | <meta name="viewport" content="width=device-width, initial-scale=1" /> |
11 | 11 | <meta name="theme-color" content="#000000" /> |
12 | 12 | <meta name="description" content="View group assignments for a WCA competition" /> |
13 | 13 | <meta property="og:site_name" content="Competition Groups" /> |
14 | | - <link rel="apple-touch-icon" href="%PUBLIC_URL%/apple-touch-icon.png" /> |
| 14 | + <link rel="apple-touch-icon" href="/apple-touch-icon.png" /> |
15 | 15 | <script src="https://kit.fontawesome.com/42a36b4555.js" crossorigin="anonymous"></script> |
16 | 16 | <!-- |
17 | 17 | manifest.json provides metadata used when your web app is installed on a |
18 | 18 | user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ |
19 | 19 | --> |
20 | | - <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> |
| 20 | + <link rel="manifest" href="/manifest.json" /> |
21 | 21 | <!-- |
22 | | - Notice the use of %PUBLIC_URL% in the tags above. |
| 22 | + Notice the use of in the tags above. |
23 | 23 | It will be replaced with the URL of the `public` folder during the build. |
24 | 24 | Only files inside the `public` folder can be referenced from the HTML. |
25 | 25 |
|
26 | | - Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will |
| 26 | + Unlike "/favicon.ico" or "favicon.ico", "/favicon.ico" will |
27 | 27 | work correctly both with client-side routing and a non-root public URL. |
28 | 28 | Learn how to configure a non-root public URL by running `npm run build`. |
29 | 29 | --> |
|
43 | 43 | <body> |
44 | 44 | <noscript>You need to enable JavaScript to run this app.</noscript> |
45 | 45 | <div id="root"></div> |
46 | | - <!-- |
47 | | - This HTML file is a template. |
48 | | - If you open it directly in the browser, you will see an empty page. |
49 | | -
|
50 | | - You can add webfonts, meta tags, or analytics to this file. |
51 | | - The build step will place the bundled scripts into the <body> tag. |
52 | | -
|
53 | | - To begin the development, run `npm start` or `yarn start`. |
54 | | - To create a production bundle, use `npm run build` or `yarn build`. |
55 | | - --> |
| 46 | + <!-- Add entry point 👇 --> |
| 47 | + <script type="module" src="/src/index.tsx"></script> |
56 | 48 | </body> |
57 | 49 | </html> |
0 commit comments