Files
aiapply/next.config.js

16 lines
277 B
JavaScript
Raw Normal View History

2025-09-06 08:28:47 +08:00
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
domains: ['localhost'],
},
webpack: (config) => {
config.resolve.fallback = {
...config.resolve.fallback,
fs: false,
};
return config;
},
}
module.exports = nextConfig