Some checks failed
Build and Push Docker Image / build_and_push (push) Failing after 39s
10 lines
177 B
TypeScript
10 lines
177 B
TypeScript
import type { NextConfig } from "next"
|
|
|
|
/** @type {NextConfig} */
|
|
const nextConfig: NextConfig = {
|
|
reactStrictMode: true,
|
|
output: "standalone",
|
|
}
|
|
|
|
export default nextConfig
|