Files
formbricks-formbricks/next.config.js
2022-06-06 13:38:36 +09:00

16 lines
264 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
async redirects() {
return [
{
source: "/",
destination: "/forms/",
permanent: false,
},
];
},
};
module.exports = nextConfig;