├── .gitignore ├── LICENSE ├── README.md ├── middleware.js ├── package.json └── redirects.yml /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | data.js 3 | public 4 | .vercel 5 | lib 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThewApp/vercel-shorturl-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThewApp/vercel-shorturl-starter/HEAD/README.md -------------------------------------------------------------------------------- /middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThewApp/vercel-shorturl-starter/HEAD/middleware.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThewApp/vercel-shorturl-starter/HEAD/package.json -------------------------------------------------------------------------------- /redirects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThewApp/vercel-shorturl-starter/HEAD/redirects.yml --------------------------------------------------------------------------------