├── .gitignore └── vercel.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .vscode 3 | .idea 4 | *.log 5 | .env 6 | /tmp 7 | -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | "redirects": [ 3 | { 4 | "source": "/", 5 | "destination": "https://www.synthetix.io/", 6 | "statusCode": 301 7 | } 8 | ] 9 | } 10 | --------------------------------------------------------------------------------