diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 0c7dc0e..b4ef03f 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -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 diff --git a/index.html b/index.html index 3b29f9c..95b9a4d 100644 --- a/index.html +++ b/index.html @@ -6,7 +6,7 @@ Password Generator - +
diff --git a/package.json b/package.json index f6cd660..5c1a87f 100644 --- a/package.json +++ b/package.json @@ -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" },