Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# SPDX-FileCopyrightText: the secureCodeBox authors
#
# SPDX-License-Identifier: Apache-2.0

# https://docs.netlify.com/build/configure-builds/file-based-configuration/

[build]
base = "documentation"
command = "npm install && npm run build"
publish = "build"
functions = "netlify/functions"

# To make this work we point a DNS A record with name securecodebox.io to the Netlify load balancer (75.2.60.5)
# See https://docs.netlify.com/manage/domains/configure-domains/bring-a-domain-to-netlify/
[[redirects]]
from = "https://securecodebox.io/*"
to = "https://www.securecodebox.io/:splat"
status = 302
force = true
Loading