Files
zipline/next.config.js
2023-08-09 23:07:52 -07:00

13 lines
243 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
rewrites: async () => [
{
source: '/invite/:code',
destination: '/auth/register?code=:code',
},
],
};
module.exports = nextConfig;