From 8ece588c41ccf77233e1bb8fa9002a81ed781396 Mon Sep 17 00:00:00 2001 From: yoyzhang Date: Thu, 17 Oct 2024 17:10:06 +0800 Subject: [PATCH] feat: add netlify config --- frontend/netlify.toml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 frontend/netlify.toml diff --git a/frontend/netlify.toml b/frontend/netlify.toml new file mode 100644 index 0000000..df9f053 --- /dev/null +++ b/frontend/netlify.toml @@ -0,0 +1,8 @@ +[build] + command = "npm run build" + publish = "dist" + +[[redirects]] + from = "/*" + to = "/index.html" + status = 200