25 lines
375 B
TypeScript
25 lines
375 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
|
|
experimental: {
|
|
turbo: {
|
|
resolveExtensions: ['.tsx', '.ts', '.jsx', '.js'],
|
|
},
|
|
},
|
|
|
|
allowedDevOrigins: [
|
|
'10.10.10.1',
|
|
],
|
|
};
|
|
|
|
export default nextConfig;
|