Skip to content

Commit

Permalink
Fix deployment script to disable jekyll
Browse files Browse the repository at this point in the history
Jekyll excludes underscores which causes a lot of nuxt generated folders like _nuxt and _ipx to result in 404s
  • Loading branch information
preethamrn committed Dec 27, 2023
1 parent ec564a7 commit eccaef2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ bun run generate
cd .output/public

echo 'www.preethamrn.com' > CNAME
touch .nojekyll # needed to allow github pages to include pages that start with _ (eg. _ipx, _nuxt, etc.)

git init
git add -A
Expand Down

0 comments on commit eccaef2

Please sign in to comment.