Skip to content

Commit 7e67a70

Browse files
authored
Merge pull request #924 from IgniteUI/dmdimitrov/igniteui-react-19.3.0-rc.2
feat(samples): migrate to vite
2 parents 0bde251 + 0372548 commit 7e67a70

File tree

5,342 files changed

+47675
-40443
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

5,342 files changed

+47675
-40443
lines changed

browser/index.html

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<link rel="icon" href="favicon.ico" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1" />
7+
<meta name="theme-color" content="#000000" />
8+
<meta name="description" content="Examples of how to use IgniteUI for React components">
9+
10+
<!-- tags for preventing page caching: -->
11+
<meta http-equiv='cache-control' content='no-cache'>
12+
<meta http-equiv='expires' content='0'>
13+
<meta http-equiv='pragma' content='no-cache'>
14+
15+
<link rel="apple-touch-icon" href="logo192.png" />
16+
<link rel="shortcut icon" href="logo192.png">
17+
<base href="/react-demos/">
18+
19+
<!-- before -->
20+
<link rel="manifest" href="/manifest.json" crossorigin="use-credentials" />
21+
22+
<!--
23+
manifest.json provides metadata used when your web app is installed on a
24+
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
25+
-->
26+
<title>Samples Browser | IgniteUI for React | Infragistics</title>
27+
<link href="https://static.infragistics.com/xplatform/css/samples/shared.v8.css" rel="stylesheet" />
28+
<link href="https://static.infragistics.com/xplatform/css/samples/custom-legend.css" rel="stylesheet" type="text/css" />
29+
<!-- <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" > -->
30+
<!-- <link href="https://fonts.googleapis.com/css?family=Kanit&display=swap" rel="stylesheet"> -->
31+
<!-- <link href='https://fonts.googleapis.com/css?family=Titillium Web' rel='stylesheet'> -->
32+
</head>
33+
<body>
34+
<noscript>You need to enable JavaScript to run this app.</noscript>
35+
<div id="root"></div>
36+
<script type="module" src="/src/index.tsx"></script>
37+
<!--
38+
This HTML file is a template.
39+
If you open it directly in the browser, you will see an empty page.
40+
41+
You can add webfonts, meta tags, or analytics to this file.
42+
The build step will place the bundled scripts into the <body> tag.
43+
44+
To begin the development, run `npm start` or `yarn start`.
45+
To create a production bundle, use `npm run build` or `yarn build`.
46+
-->
47+
</body>
48+
</html>

0 commit comments

Comments
 (0)