Files
AIOStreams/packages/frontend/next.config.ts
T
Viren070 7cdd7c0b8e fix: .
2025-09-18 16:08:53 +01:00

22 lines
411 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,
'./ptt.js': './ptt',
'./regex.js': './regex',
};
return config;
},
};
export default nextConfig;