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