This commit is contained in:
phaichayon
2026-04-17 23:26:17 +07:00
commit d5ad7f841f
105 changed files with 31656 additions and 0 deletions

12
next.config.ts Normal file
View File

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