7 lines
140 B
JavaScript
7 lines
140 B
JavaScript
|
|
/** @type {import('next').NextConfig} */
|
||
|
|
const nextConfig = {
|
||
|
|
output: 'standalone',
|
||
|
|
distDir: 'build',
|
||
|
|
};
|
||
|
|
export default nextConfig;
|