Skip to content
This repository was archived by the owner on Mar 13, 2024. It is now read-only.

Commit 63cbc25

Browse files
authored
fix(redirects): force redirect (#121)
1 parent cb184c2 commit 63cbc25

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,6 @@ npm-debug.log*
1919
yarn-debug.log*
2020
yarn-error.log*
2121

22-
.vscode
22+
.vscode
23+
# Local Netlify folder
24+
.netlify

netlify.toml

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@ command = "npm run build"
55
[[redirects]]
66
from = "/blog/*"
77
to = "https://chainloop.dev/blog/:splat"
8-
status = 300
8+
status = 302
9+
force = true
910

1011

1112
[[redirects]]
1213
from = "/blog"
1314
to = "https://chainloop.dev/blog"
14-
status = 300
15+
status = 302
16+
force = true

0 commit comments

Comments
 (0)