Files
AIOStreams/packages/frontend/next.config.ts
T
2025-05-26 21:10:51 +01:00

20 lines
353 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
/* config options here */
reactStrictMode: false,
output: 'export',
images: {
unoptimized: true,
},
webpack(config) {
config.resolve.fallback = {
...config.resolve.fallback,
fs: false,
};
return config;
},
};
export default nextConfig;