Skip to content

Commit

Permalink
add: vite here
Browse files Browse the repository at this point in the history
  • Loading branch information
hiepxanh committed Oct 19, 2022
0 parents commit e48d26e
Show file tree
Hide file tree
Showing 14 changed files with 3,186 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/node_modules
2,165 changes: 2,165 additions & 0 deletions dist/assets/index.c2e184af.js

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions dist/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + TS</title>
<script type="module" crossorigin src="/assets/index.c2e184af.js"></script>
</head>
<body>
<div id="app"></div>
<app-root></app-root>

</body>
</html>
15 changes: 15 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + TS</title>
</head>
<body>
<div id="app"></div>
<img src="/vite.svg" alt="">
<app-root></app-root>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
29 changes: 29 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "vite-angular",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^10.4.12",
"postcss": "^8.4.18",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.4",
"vite": "^3.1.8"
},
"dependencies": {
"@angular/common": "^14.2.6",
"@angular/compiler": "^14.2.6",
"@angular/core": "^14.2.6",
"@angular/platform-browser": "^14.2.6",
"zone.js": "^0.11.8"
}
}
Loading

0 comments on commit e48d26e

Please sign in to comment.