mirror of
https://github.com/Lissy93/web-check.git
synced 2024-11-07 08:55:22 +01:00
42 lines
1.4 KiB
TOML
42 lines
1.4 KiB
TOML
# Build settings and site core config
|
|
[build]
|
|
base = "/"
|
|
command = "yarn build"
|
|
publish = "dist"
|
|
functions = "api"
|
|
|
|
# Environmental variables and optional secrets
|
|
[build.environment]
|
|
PLATFORM = "netlify"
|
|
PUBLIC_API_ENDPOINT = "/.netlify/functions"
|
|
# Build configuration env vars (uncomment if you want to conigure these)
|
|
# CI="false" # Set CI to false, to prevent warnings from exiting the build
|
|
# CHROME_PATH='/usr/bin/chromium' # Path to Chromium binary
|
|
# NODE_VERSION = "16.16.0" # Set the version of Node.js to use
|
|
|
|
# Optional secrets and API keys (uncomment if you want to add these)
|
|
# GOOGLE_CLOUD_API_KEY='' # Google Cloud API key, for running Lighthouse scans
|
|
# BUILT_WITH_API_KEY='' # BuiltWith API key, for detecting site features
|
|
# REACT_APP_SHODAN_API_KEY='' # Shodan API key, for using Shodan scan API
|
|
# REACT_APP_WHO_API_KEY='' # WhoAPI key, for iniiating client-side whois lookup
|
|
|
|
# Redirect the /api/* path to the lambda functions
|
|
[[redirects]]
|
|
from = "/api/*"
|
|
to = "/.netlify/functions/:splat"
|
|
status = 301
|
|
force = true
|
|
|
|
# Plugins
|
|
[[plugins]]
|
|
package = "netlify-plugin-chromium"
|
|
[plugins.inputs]
|
|
packageManager = "yarn"
|
|
|
|
# Set any security headers here
|
|
[[headers]]
|
|
for = "/*"
|
|
[headers.values]
|
|
# Uncomment to enable Netlify user control. Requires premium plan.
|
|
# Basic-Auth = "someuser:somepassword anotheruser:anotherpassword"
|