8 lines
151 B
TypeScript
8 lines
151 B
TypeScript
import { type NextConfig } from 'next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
poweredByHeader: false
|
|
};
|
|
|
|
export default nextConfig; |