Skip to content

Commit

Permalink
deploy angular app on pages
Browse files Browse the repository at this point in the history
  • Loading branch information
mn-42 committed Feb 29, 2024
1 parent cdae198 commit e5df6f9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --base-href='./github-test'",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test"
},
Expand Down
22 changes: 11 additions & 11 deletions src/index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GithubTest</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<app-root></app-root>
</body>
<head>
<meta charset="utf-8" />
<title>Ngcx Tree Demo</title>
<base href="/github-test" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<app-root></app-root>
</body>
</html>

0 comments on commit e5df6f9

Please sign in to comment.