9 lines
153 B
TypeScript
9 lines
153 B
TypeScript
|
|
import type { NextConfig } from "next";
|
||
|
|
|
||
|
|
const nextConfig: NextConfig = {
|
||
|
|
output: 'standalone',
|
||
|
|
devIndicators: false,
|
||
|
|
};
|
||
|
|
|
||
|
|
export default nextConfig;
|