This repository has been archived by the owner on Aug 5, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathnetlify.toml
74 lines (61 loc) · 1.68 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Post Processing Settings
[build.processing]
skip_processing = false
[build.processing.css]
bundle = true
minify = true
[build.processing.js]
bundle = true
minify = true
[build.processing.html]
pretty_urls = true
[build.processing.images]
compress = true
# Redirect rule for the root domain.
[[redirects]]
from = "https://jarmos.netlify.app"
to = "https://jarmos.vercel.app"
force = true
status = 301
# Redirect rule for the blog post archive URL
[[redirects]]
from = "https://jarmos.netlify.app/blog/"
to = "https://jarmos.vercel.app/blog"
force = true
status = 301
# Redirect rule for the "about" page
[[redirects]]
from = "https://jarmos.netlify.app/about/"
to = "https://jarmos.vercel.app/about"
force = true
status = 301
# Redirect rule for the projects page
[[redirects]]
from = "https://jarmos.netlify.app/projects/"
to = "https://jarmos.vercel.app/projects"
force = true
status = 301
# Redirect rule for the services page
[[redirects]]
from = "https://jarmos.netlify.app/services/"
to = "https://jarmos.vercel.app/services"
force = true
status = 301
# Redirect rule for the privacy policy page
[[redirects]]
from = "https://jarmos.netlify.app/privacy-policy/"
to = "https://jarmos.vercel.app/privacy-policy"
force = true
status = 301
# Redirect rule for the terms & condition page
[[redirects]]
from = "https://jarmos.netlify.app/terms-of-service-agreement/"
to = "https://jarmos.vercel.app/terms-and-conditions"
force = true
status = 301
# Redirect rule for the individual blog posts
[[redirects]]
from = "https://jarmos.netlify.app/posts/*"
to = "https://jarmos.vercel.app/blog/:splat"
force = true
status = 301