8 lines
146 B
JavaScript
8 lines
146 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "standalone",
|
|
reactStrictMode: true,
|
|
}
|
|
|
|
module.exports = nextConfig
|