15 lines
282 B
TypeScript
15 lines
282 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
// allowedDevOrigins: ['172.16.6.27'],
|
|
output: "standalone",
|
|
images: { unoptimized: true },
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
/* config options here */
|
|
|
|
};
|
|
|
|
export default nextConfig;
|