8 lines
140 B
JavaScript
8 lines
140 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: false,
|
|
swcMinify: true,
|
|
};
|
|
|
|
module.exports = nextConfig;
|