monkastremio / packages /frontend /next.config.ts
brunner56's picture
implement app
0bfe2e3
raw
history blame contribute delete
353 Bytes
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;