8 lines
119 B
TypeScript
8 lines
119 B
TypeScript
import {NextConfig} from "next"
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
}
|
|
|
|
export default nextConfig
|