Skip to content

Commit 8547d17

Browse files
committed
Changed all configurations in emtpy file
1 parent c9b8c08 commit 8547d17

Some content is hidden

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

68 files changed

+13486
-2072
lines changed

.DS_Store

-2 KB
Binary file not shown.

README.md

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# gravity-ui-vite-example
2+
3+
Vite template with: typescript, sass and Gravity UI.
4+
5+
## ⚗️ Technologies list
6+
7+
- [Gravity UI](https://gravity-ui.com/)
8+
- [TypeScript](https://www.typescriptlang.org/)
9+
- [Sass](https://sass-lang.com/)
10+
- [ESlint](https://eslint.org/) & [Prettier](https://prettier.io/)
11+
12+
# 🚀 Start using it
13+
14+
To use this template for your app you can run:
15+
16+
```sh
17+
npx degit gravity-ui/gravity-ui-vite-example#main my-project
18+
cd my-project
19+
20+
npm install
21+
npm run dev
22+
```
23+
24+
or
25+
26+
```sh
27+
yarn degit gravity-ui-vite-example#main my-project
28+
cd my-project
29+
30+
npm install
31+
npm run dev
32+
```
33+
34+
# 📖 Learn More
35+
36+
This package includes scripts and configuration used by [Vite](https://vitejs.dev/).\
37+
Please refer to its documentation:
38+
39+
- [Getting Started](https://vitejs.dev/guide/) – How to create a new app.
40+
- [User Guide](https://vitejs.dev/) – How to develop apps bootstrapped with Vite.

index.html

+18-12
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
6-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Vite + React + TS</title>
8-
<!--app-head-->
9-
</head>
10-
<body>
11-
<div id="root"><!--app-html--></div>
12-
<script type="module" src="./src/entry-client.tsx"></script>
13-
</body>
3+
<head>
4+
<meta charset="utf-8" />
5+
<link rel="icon" type="image/png" href="/favicon.ico" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1" />
7+
<meta name="description" content="Web site created using vite" />
8+
<!--
9+
manifest.json provides metadata used when your web app is installed on a
10+
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
11+
-->
12+
<link rel="manifest" href="/manifest.json" />
13+
<title>Gravity UI – Vite App Example</title>
14+
</head>
15+
<body class="g-root g-root_theme_dark">
16+
<noscript>You need to enable JavaScript to run this app.</noscript>
17+
<div id="root"></div>
18+
<script type="module" src="/src/main.tsx"></script>
19+
</body>
1420
</html>

0 commit comments

Comments
 (0)