-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sub-optimal deployment of habit tracker
- Loading branch information
1 parent
bb1385a
commit 7086b2f
Showing
14 changed files
with
4,234 additions
and
1 deletion.
There are no files selected for viewing
2,137 changes: 2,137 additions & 0 deletions
2,137
public/posts/deployments/habit-tracker/client/3rdpartylicenses.txt
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" data-critters-container> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>Habit Tracker</title> | ||
<base href="/" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<link rel="icon" type="image/x-icon" href="favicon.ico" /> | ||
<link rel="manifest" href="manifest.webmanifest" /> | ||
<meta name="theme-color" content="#1976d2" /> | ||
<style> | ||
html { | ||
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, | ||
Helvetica Neue, Arial, Noto Sans, sans-serif, | ||
"Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, | ||
"Noto Color Emoji"; | ||
font-size: 16px; | ||
font-weight: 400; | ||
line-height: 1.5; | ||
-webkit-text-size-adjust: 100%; | ||
background: #fff; | ||
color: #666; | ||
} | ||
body { | ||
margin: 0; | ||
} | ||
:root { | ||
--uk-breakpoint-s: 640px; | ||
--uk-breakpoint-m: 960px; | ||
--uk-breakpoint-l: 1200px; | ||
--uk-breakpoint-xl: 1600px; | ||
} | ||
:root { | ||
--uk-leader-fill-content: .; | ||
} | ||
:root { | ||
--uk-position-margin-offset: 0px; | ||
} | ||
@media print { | ||
*, | ||
*:before, | ||
*:after { | ||
background: transparent !important; | ||
color: #000 !important; | ||
box-shadow: none !important; | ||
text-shadow: none !important; | ||
} | ||
@page { | ||
margin: 0.5cm; | ||
} | ||
} | ||
</style> | ||
<link | ||
rel="stylesheet" | ||
href="posts/deployments/habit-tracker/client/styles.cba5acfa60ad7143.css" | ||
media="print" | ||
onload="this.media='all'" | ||
/> | ||
<noscript | ||
><link rel="stylesheet" href="posts/deployments/habit-tracker/client/styles.cba5acfa60ad7143.css" | ||
/></noscript> | ||
</head> | ||
<body> | ||
<app-root></app-root> | ||
<noscript | ||
>Please enable JavaScript to continue using this | ||
application.</noscript | ||
> | ||
<script | ||
src="posts/deployments/habit-tracker/client/runtime.016ad7340ffc7b80.js" | ||
type="module" | ||
></script> | ||
<script | ||
src="posts/deployments/habit-tracker/client/polyfills.c68645566a7d5979.js" | ||
type="module" | ||
></script> | ||
<script src="posts/deployments/habit-tracker/client/main.a33890116ab21dc2.js" type="module"></script> | ||
</body> | ||
</html> |
1 change: 1 addition & 0 deletions
1
public/posts/deployments/habit-tracker/client/main.a33890116ab21dc2.js
Large diffs are not rendered by default.
Oops, something went wrong.
17 changes: 17 additions & 0 deletions
17
public/posts/deployments/habit-tracker/client/manifest.webmanifest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"name": "Habit Tracker", | ||
"short_name": "Habit Tracker", | ||
"theme_color": "#000000", | ||
"background_color": "#000000", | ||
"display": "standalone", | ||
"scope": "./", | ||
"start_url": "./", | ||
"icons": [ | ||
{ | ||
"src": "favicon.ico", | ||
"sizes": "72x72", | ||
"type": "image/png", | ||
"purpose": "maskable any" | ||
} | ||
] | ||
} |
Oops, something went wrong.