Skip to content

Commit

Permalink
correction
Browse files Browse the repository at this point in the history
  • Loading branch information
JodieAddis committed Feb 17, 2024
1 parent 8ecf2c5 commit 0901472
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
run: cp index.html ./dist/

- name: Copy font to dist
run: cp ./public/font/JetBrainsMono.ttf ./dist/public/
run: cp -r ./public/font ./dist/public/font

- name: Uploading Artifacts
uses: actions/upload-pages-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>Password Generator</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<!--<link rel="stylesheet" href="dist/output.css" /> Dev -->
<link rel="stylesheet" href="output.css" />
<link rel="stylesheet" href="public/output.css" />
</head>
<body class="flex h-full w-full items-center bg-darkBalticSea">
<main class="flex h-5/6 w-full flex-col items-center justify-center">
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"scripts": {
"dev:compile": "tsc --watch",
"dev:design": "npx tailwindcss -i ./public/style/tailwind.css -o ./dist/output.css --watch",
"dev:design": "npx tailwindcss -i ./public/style/tailwind.css -o ./dist/public/output.css --watch",
"dev:formater": "prettier --write .",
"compile": "tsc",
"design": "npx tailwindcss -i ./public/style/tailwind.css -o ./dist/output.css",
"design": "npx tailwindcss -i ./public/style/tailwind.css -o ./dist/public/output.css",
"linter": "eslint --ignore-path .eslintignore --ext .ts .",
"test": "vitest"
},
Expand Down

0 comments on commit 0901472

Please sign in to comment.