.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

View File

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