9 lines
145 B
JavaScript
Executable file
9 lines
145 B
JavaScript
Executable file
/** @type {import('next').NextConfig} */
|
|
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
output: 'standalone',
|
|
};
|
|
|
|
module.exports = nextConfig;
|