From 94b537707cc583de36518af18a22f6940b01df03 Mon Sep 17 00:00:00 2001 From: caesarsage Date: Sat, 13 Dec 2025 09:52:49 +0100 Subject: [PATCH] Add netlify.toml to enable deploy previews for PRs Signed-off-by: caesarsage --- netlify.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 netlify.toml diff --git a/netlify.toml b/netlify.toml new file mode 100644 index 00000000..0d72b3ed --- /dev/null +++ b/netlify.toml @@ -0,0 +1,17 @@ +[build] + publish = "public" + command = "npm run build" + +[context.deploy-preview] + command = "npm run build" + +[context.branch-deploy] + command = "npm run build" + +[context.production] + command = "npm run build" + +[context.production.environment] + HUGO_BASEURL = "https://microcks.io/" + HUGO_ENV = "production" + HUGO_ENABLEGITINFO = "true"