From 25aaf2c8049109fd45037aadf784fe675b327c72 Mon Sep 17 00:00:00 2001 From: Andreas Sander Date: Sun, 9 Aug 2020 09:57:20 +0200 Subject: [PATCH] chore(netlify) Remove netlify as we no longer deploy it there. --- netlify.toml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 netlify.toml diff --git a/netlify.toml b/netlify.toml deleted file mode 100644 index 579f031..0000000 --- a/netlify.toml +++ /dev/null @@ -1,25 +0,0 @@ -# Settings in the [build] context are global and are applied to all contexts -# unless otherwise overridden by more specific contexts. -[build] - # Directory to change to before starting a build. - # This is where we will look for package.json/.nvmrc/etc. - base = "." - - # Directory (relative to root of your repo) that contains the deploy-ready - # HTML files and assets generated by the build. If a base directory has - # been specified, include it in the publish directory path. - publish = "dist/" - - # Default build command. - command = "npm run start" - - # Directory with the serverless Lambda functions to deploy to AWS. -# functions = "project/functions/" - -[context.branch-deploy.environment] - NODE_ENV = "development" - -# Redirects and headers are GLOBAL for all builds – they do not get scoped to -# contexts no matter where you define them in the file. -# For context-specific rules, use _headers or _redirects files, which are -# PER-DEPLOY.