mirror of
https://github.com/diced/zipline.git
synced 2026-01-14 13:57:13 -08:00
13 lines
243 B
JavaScript
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;
|