mirror of
https://github.com/Lissy93/dashy.git
synced 2024-11-28 05:14:08 +03:00
c5dea1e1df
The catch-all redirect is required for Vue's HTML5 history mode to work on Netlify. However the current configuration was redirecting everything, including the API endpoints to index.html, preventing the serverless functions (for status checking, config management, etc) from working. 🤞 Hopefully this will work...
43 lines
1.3 KiB
TOML
43 lines
1.3 KiB
TOML
# Enables you to easily deploy a fork of Dashy to Netlify
|
|
# without the need to configure anything in admin UI
|
|
# Docs: https://www.netlify.com/docs/netlify-toml-reference/
|
|
|
|
# Essential site config
|
|
[build]
|
|
base = "/"
|
|
command = "yarn build"
|
|
publish = "dist"
|
|
functions = "services/serverless-functions"
|
|
|
|
# Site info, used for the 1-Click deploy page
|
|
[template.environment]
|
|
STATUSKIT_PAGE_TITLE = "Dashy"
|
|
STATUSKIT_COMPANY_LOGO = "https://raw.githubusercontent.com/Lissy93/dashy/master/docs/assets/logo.png"
|
|
STATUSKIT_SUPPORT_CONTACT_LINK = "https://github.com/lissy93/dashy"
|
|
STATUSKIT_RESOURCES_LINK = "https://dashy.to/docs"
|
|
|
|
# Redirect the Node endpoints to serverless functions
|
|
[[redirects]]
|
|
from = "/status-check"
|
|
to = "/.netlify/functions/cloud-status-check"
|
|
status = 301
|
|
force = true
|
|
[[redirects]]
|
|
from = "/config-manager/*"
|
|
to = "/.netlify/functions/not-supported"
|
|
status = 301
|
|
force = true
|
|
|
|
# For router history mode, ensure pages land on index
|
|
[[redirects]]
|
|
from = "/*"
|
|
to = "/index.html"
|
|
status = 200
|
|
|
|
# Set any security headers here
|
|
[[headers]]
|
|
for = "/*"
|
|
[headers.values]
|
|
# Uncomment to enable Netlify user control. You must have a paid plan.
|
|
# Basic-Auth = "someuser:somepassword anotheruser:anotherpassword"
|