mirror of
https://github.com/diced/zipline.git
synced 2025-05-10 18:05:54 +02:00
17 lines
350 B
JavaScript
17 lines
350 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
rewrites: async () => [
|
|
{
|
|
source: '/invite/:code',
|
|
destination: '/auth/register?code=:code',
|
|
},
|
|
],
|
|
webpack: (config) => {
|
|
config.resolve.fallback = { worker_threads: false };
|
|
|
|
return config;
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|