web/next.config.ts
Aidan 1714250476
Some checks failed
Build and Push Docker Image / build_and_push (push) Failing after 39s
dockerize
2025-01-23 23:41:12 -05:00

10 lines
177 B
TypeScript

import type { NextConfig } from "next"
/** @type {NextConfig} */
const nextConfig: NextConfig = {
reactStrictMode: true,
output: "standalone",
}
export default nextConfig