2023-07-27 01:17:44 +00:00
|
|
|
# Netlify configuration file
|
|
|
|
# https://www.netlify.com/docs/netlify-toml-reference/
|
|
|
|
|
|
|
|
[build]
|
2023-08-10 10:57:33 +00:00
|
|
|
command = "yarn run extract && yarn run compile && yarn run build --outDir dist"
|
2023-07-27 01:17:44 +00:00
|
|
|
publish = "dist"
|
|
|
|
|
2023-08-10 10:57:33 +00:00
|
|
|
[build.environment]
|
|
|
|
VITE_DEMO = "true"
|
|
|
|
|
2023-07-27 01:17:44 +00:00
|
|
|
# Send requests to subpath
|
|
|
|
|
|
|
|
[[redirects]]
|
|
|
|
from = "/*"
|
|
|
|
to = "/index.html"
|
|
|
|
status = 200
|
|
|
|
|
|
|
|
[[plugins]]
|
|
|
|
package = "@netlify/plugin-lighthouse"
|
|
|
|
|
|
|
|
[plugins.inputs.settings]
|
|
|
|
preset = "desktop" # Optionally run Lighthouse using a desktop configuration
|