작성
·
422
·
수정됨
답변 1
1
안녕하세요!
저도 구글링해서 발견한 것인데
next.config.js 파일에
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
webpack5: true,
webpack: (config) => {
config.resolve.fallback = { fs: false };
return config;
},
};
module.exports = nextConfig;
이렇게 넣어서 해봐주세요 ~
감사합니다.