From 31d8f133aeb4722cfc8c9ac089dc16ccb87bab25 Mon Sep 17 00:00:00 2001 From: Marc Emmanuel Date: Sun, 11 Jan 2026 21:11:39 +0100 Subject: [PATCH] chore: add netlify configuration for build and redirects --- netlify.toml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 netlify.toml diff --git a/netlify.toml b/netlify.toml new file mode 100644 index 00000000..df9f0535 --- /dev/null +++ b/netlify.toml @@ -0,0 +1,8 @@ +[build] + command = "npm run build" + publish = "dist" + +[[redirects]] + from = "/*" + to = "/index.html" + status = 200