Aarthalabs-Frontend/next.config.mjs
2026-07-08 16:29:41 +05:30

12 lines
252 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
// Emit a fully static site into `out/` when `npm run build` is executed.
output: "export",
trailingSlash: true,
images: {
unoptimized: true,
},
};
export default nextConfig;