From b422d094d5748cea6f069213f3677f48464009d6 Mon Sep 17 00:00:00 2001 From: Pierre-Dominique Putallaz Date: Tue, 6 Jul 2021 11:37:55 +0200 Subject: [PATCH] Ignore Jekyll when deploying the application to the GH pages --- package.json | 2 +- public/.nojekyll | 0 2 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 public/.nojekyll diff --git a/package.json b/package.json index 04ce7219..73d56fa1 100644 --- a/package.json +++ b/package.json @@ -60,7 +60,7 @@ "scripts": { "start": "next dev", "start-production": "next start", - "build": "next build && next export --outdir build", + "build": "next build && next export --outdir build && touch build/.nojekyll", "lint": "eslint --ext js,ts,tsx src --max-warnings=0", "build:package": "rollup -c && node copy-package-json.js && cp README.md dist", "test": "jest test --coverage", diff --git a/public/.nojekyll b/public/.nojekyll deleted file mode 100644 index e69de29b..00000000