8 lines
112 B
TypeScript
8 lines
112 B
TypeScript
type NextConfig = any;
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
};
|
|
|
|
export default nextConfig;
|