From 55a92f6a78c1ccc354d2f27f48f1838c76d3ee12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20Bl=C3=A4ttermann?= Date: Tue, 13 Dec 2022 03:20:31 +0100 Subject: [PATCH] Store Netlify settings in file This way we don't need to update via Netlify UI, which can be tricky if changing build settings. --- website/netlify.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 website/netlify.toml diff --git a/website/netlify.toml b/website/netlify.toml new file mode 100644 index 000000000..1e983a506 --- /dev/null +++ b/website/netlify.toml @@ -0,0 +1,12 @@ +# Settings in the [build] context are global and are applied to +# all contexts unless otherwise overridden by more specific contexts. +[build] + # Directory that contains the deploy-ready HTML files and + # assets generated by the build. This is relative to the base + # directory if one has been set, or the root directory if + # a base has not been set. This sample publishes the directory + # located at the absolute path "root/project/build-output" + publish = "website/out" + + # Default build command. + command = "npm run build" \ No newline at end of file