I am wondering if there is a bug in the package. Since I deployed my site I am still getting Not found error.
I am using ver 2.2.0. This is my script:
const ghPages = require("gh-pages")
ghPages.publish(
'public',
{
branch: 'master',
repo: 'https://github.com/Bam92/abelmbula.git',
},
() => {
console.log('Deploy Completed!')
}
)
When I run my custom command to deploy (npm run deploy:gh-pages) I get the message Deploy Completed!, but when I go online I get 404 error.
What's wrong?
I am wondering if there is a bug in the package. Since I deployed my site I am still getting
Not found error.I am using ver
2.2.0. This is my script:When I run my custom command to deploy (
npm run deploy:gh-pages) I get the messageDeploy Completed!, but when I go online I get404error.What's wrong?