rsnext/examples/with-fingerprintjs-pro/next.config.js

16 lines
273 B
JavaScript
Raw Normal View History

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