-
-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimize .vercelignore configuration (from #366, modified)
- Loading branch information
1 parent
f906c4e
commit ec618be
Showing
1 changed file
with
10 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,23 @@ | ||
# Optimize speed/size of deployments by not uploading those files | ||
.idea/ | ||
.github/ | ||
node_modules/ | ||
cypress/ | ||
docs/ | ||
coverage/ | ||
scripts/ | ||
svg-to-react/ | ||
.codeclimate.yml | ||
.editorconfig | ||
.env.build.example | ||
.env* | ||
.graphqlconfig | ||
buildspec.yml | ||
README.md | ||
.hybrid-cache-*.cache | ||
.jest-test-results.json | ||
*.md | ||
LICENSE | ||
schema.graphql | ||
yarn.lock | ||
yarn-error.log | ||
|
||
# Avoid tests being deployed as Vercel Serverless Functions (increases bundle size, and count towards limits) | ||
# Avoid tests being deployed as Vercel Serverless Functions (they would increase bundle size, and count towards Vercel's limits) | ||
src/pages/api/*.test.ts | ||
src/pages/api/**/*.test.ts |