lending-next/next.config.js

12 lines
159 B
JavaScript
Raw Normal View History

2022-03-19 01:21:04 +03:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
2022-05-02 23:22:54 +03:00
}
nextConfig.node = {
fs: 'empty',
2022-03-19 01:21:04 +03:00
}
module.exports = nextConfig
2022-05-02 23:22:54 +03:00