9 lines
160 B
JavaScript
9 lines
160 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
swcMinify: true,
|
|
reactStrictMode: true,
|
|
output: "standalone"
|
|
};
|
|
|
|
export default nextConfig;
|