Verifies membership of Google Workspace for joining Discord guilds as a member themselves.
- Node.js v17
- Next.js v12
- Use Next.js v11 instead on AWS Amplify (see aws-amplify/amplify-hosting#2343)
pnpm install
# Runs a development server
pnpm dev
# Builds entire the project to deploy
pnpm build
Use the following build config to deploy this project onto AWS Amplify instead of Vercel. If you have no reason for that, use Vercel.
version: 1
frontend:
phases:
preBuild:
commands:
- npm install -g pnpm
- pnpm install
- env > .env.local
build:
commands:
- pnpm run build
artifacts:
baseDirectory: .next
files:
- '**/*'
cache:
paths:
- node_modules/**/*