serpbear/next.config.js
2022-11-24 20:13:54 +06:00

9 lines
164 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: false,
output: 'standalone',
};
module.exports = nextConfig;