-
Notifications
You must be signed in to change notification settings - Fork 2
/
netlify.toml
41 lines (35 loc) · 929 Bytes
/
netlify.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[build]
publish = "dist/"
command = "bash ./build.sh"
[build.environment]
NODE_VERSION = "20.11.0"
# `--force` flag is required because of pug@3 conflicting with pug-loader peer dependency.
# pug@3 works fine in practice.
NPM_FLAGS = "--force"
RUST_VERSION = "1.75.0"
# Set up redirects from all aux domains to the canonical one.
[[redirects]]
from = "https://ed25519.wtf/*"
to = "https://quirks.ed25519.info/:splat"
status = 301
force = true
[[redirects]]
from = "https://ed25519-quirks.info/*"
to = "https://quirks.ed25519.info/:splat"
status = 301
force = true
[[redirects]]
from = "https://ed25519quirks.info/*"
to = "https://quirks.ed25519.info/:splat"
status = 301
force = true
[[redirects]]
from = "https://ed25519-quirks.com/*"
to = "https://quirks.ed25519.info/:splat"
status = 301
force = true
[[redirects]]
from = "https://ed25519quirks.com/*"
to = "https://quirks.ed25519.info/:splat"
status = 301
force = true