.nojekyll needs to be empty

This commit is contained in:
Sébastien Chopin 2016-11-27 18:45:50 +01:00
parent 3ed1340d56
commit 16c9710141
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ module.exports = function () {
// Add .nojekyll file to let Github Pages add the _nuxt/ folder
// https://help.github.com/articles/files-that-start-with-an-underscore-are-missing/
const nojekyllPath = resolve(distPath, '.nojekyll')
return writeFile(nojekyllPath)
return writeFile(nojekyllPath, '')
})
.then(() => {
debug('HTML Files generated')