You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 11, 2022. It is now read-only.
if (!process.env.REDIRECT_URL) throw new Error('Please provide the REDIRECT_URL environment variable. See https://github.com/withspectrum/micro-redirect for more information.')
const { URL } = require('url');
module.exports = async (req, res) => {
res.statusCode = 301;
const url = new URL(req.url, process.env.REDIRECT_URL);