From 35c455c4a7f8bd598c8249fd0f09b986d9429216 Mon Sep 17 00:00:00 2001 From: Rahul Mehta <52323345+RTM909@users.noreply.github.com> Date: Fri, 28 Oct 2022 15:08:11 -0400 Subject: [PATCH] Update deployment.md added a command to make a copy of index.html and name it 404.html. Without this, if a reload is done on a route other than the root throws a 404 error on gitlab --- docs/guide/deployment.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/guide/deployment.md b/docs/guide/deployment.md index f0ec80d7a6..972c5eb74b 100644 --- a/docs/guide/deployment.md +++ b/docs/guide/deployment.md @@ -134,6 +134,7 @@ pages: # the job must be named pages - mv dist public # rename the dist folder (result of npm run build) # optionally, you can activate gzip support with the following line: - find public -type f -regex '.*\.\(htm\|html\|txt\|text\|js\|css\)$' -exec gzip -f -k {} \; + - cp public/index.html public/404.html # without this, reloading on a route other than root throws error 404 artifacts: paths: - public # artifact path must be /public for GitLab Pages to pick it up