-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
netlify.toml
58 lines (47 loc) · 1.3 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
[build.environment]
PYTHON_VERSION = "3.13"
HUGO_VERSION = "0.134.3"
DART_SASS_VERSION = "1.77.5"
DART_SASS_URL = "https://github.com/sass/dart-sass/releases/download/"
[build]
base = "/"
publish = "public"
command = """\
export DART_SASS_TARBALL="dart-sass-${DART_SASS_VERSION}-linux-x64.tar.gz" && \
curl -LJO ${DART_SASS_URL}/${DART_SASS_VERSION}/${DART_SASS_TARBALL} && \
tar -xf ${DART_SASS_TARBALL} && \
rm ${DART_SASS_TARBALL} && \
export PATH=/opt/build/repo/dart-sass:$PATH && \
make html \
"""
[[redirects]]
from = "/scipylib"
to = "/"
[[redirects]]
from = "/scipylib/license.html"
to = "https://github.com/scipy/scipy/blob/main/LICENSE.txt"
[[redirects]]
from = "/scipylib/download.html"
to = "/install/"
[[redirects]]
from = "/scipylib/mailing-lists.html"
to = "/community/"
[[redirects]]
from = "/scipylib/bug-report.html"
to = "/bug-report/"
[[redirects]]
from = "/scipylib/dev-zone.html"
to = "/contribute/"
[[redirects]]
from = "/scipylib/donations.html"
to = "/donations/"
[[redirects]]
from = "/gethelp"
to = "/community/"
[[redirects]]
from = "/scipylib/faq.html"
to = "/faq/"
[[plugins]]
package = "netlify-plugin-checklinks"
[plugins.inputs]
skipPatterns = ['https://fonts.gstatic.com', 'https://fonts.googleapis.com']