Files
edueasy/next.config.ts
T

9 lines
159 B
TypeScript

import type { NextConfig } from "next"
const nextConfig: NextConfig = {
output: "standalone",
images: { unoptimized: true },
}
export default nextConfig