197 | Usage 198 |
199 |200 | In yours projects modify 201 | config.yml 204 | file: 205 |
206 |├── .gitignore ├── .vercelignore ├── 404.html ├── LICENSE ├── README.md ├── api ├── auth.ts └── callback.ts ├── index.html ├── lib ├── config.ts └── scopes.ts ├── package.json ├── vercel.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vscode 3 | .vercel 4 | .env 5 | -------------------------------------------------------------------------------- /.vercelignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |8 | A simple OAuth2 serverless gateway for Netlify CMS 9 |
10 |200 | In yours projects modify 201 | config.yml 204 | file: 205 |
206 |