I wrote a web application on nuxt.js. I followed this instruction clearly.
Nuxt.js deploy on GitHub Pages
But when I deploy my app to Github Pages, there was an error on my site in the console
Here is my site
I wrote a web application on nuxt.js. I followed this instruction clearly.
Nuxt.js deploy on GitHub Pages
But when I deploy my app to Github Pages, there was an error on my site in the console
Here is my site
The .nojekyll file is missing.
You have forgotten to commit the empty file called .nojekyll from dist to your GitHub project.
This is because GitHub Pages will by default ignore any files and folders prefixed by an underscore (like _nuxt), as documented here: https://github.com/blog/572-bypassing-jekyll-on-github-pages
.nojekyll in the folder dist. Despite this, I added an empty .nojekyll file to my github project. But the console errors did not disappear.nojekyll file at root of your project (github.com/sadybekovyernar/sadybekovyernar.github.io) not in a subfolder (github.com/sadybekovyernar/sadybekovyernar.github.io/tree/…)