From 16c97101418927992de00e51c2eab60620ab3c75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Chopin?= Date: Sun, 27 Nov 2016 18:45:50 +0100 Subject: [PATCH] .nojekyll needs to be empty --- lib/generate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/generate.js b/lib/generate.js index ea1f67a05f..660c7a930f 100644 --- a/lib/generate.js +++ b/lib/generate.js @@ -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')