14 lines
241 B
TypeScript
14 lines
241 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
images: { unoptimized: true },
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
/* config options here */
|
|
|
|
};
|
|
|
|
export default nextConfig;
|