mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
8 lines
148 B
JavaScript
8 lines
148 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: false,
|
|
output: 'standalone',
|
|
}
|
|
|
|
module.exports = nextConfig
|
|
|