Files
alla-vote/next.config.ts
phaichayon d5ad7f841f commit
2026-04-17 23:26:17 +07:00

13 lines
233 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
/* config options here */
typescript: {
ignoreBuildErrors: true,
},
reactStrictMode: false,
};
export default nextConfig;