12 lines
204 B
TypeScript
12 lines
204 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
output: 'standalone',
|
|
};
|
|
|
|
export default nextConfig;
|