From e4f981649bc174173e00718f88032fba7001384b Mon Sep 17 00:00:00 2001 From: Valentin Kaelin Date: Mon, 19 Aug 2019 13:09:17 +0200 Subject: [PATCH] First try to deploy frontend on Netlify --- netlify.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 netlify.toml diff --git a/netlify.toml b/netlify.toml new file mode 100644 index 0000000..fbfc408 --- /dev/null +++ b/netlify.toml @@ -0,0 +1,11 @@ +# Global settings applied to the whole site. +# +# “base” is the directory to change to before starting build. If you set base: +# that is where we will look for package.json/.nvmrc/etc, not repo root! +# “command” is your build command. +# “publish” is the directory to publish (relative to the root of your repo). + +[build] + base = "client" + command = "npm run build" + publish = "client/dist" \ No newline at end of file