1 Star 0 Fork 0

qijianchun/OBex

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
next.config.js 578 Bytes
一键复制 编辑 原始数据 按行查看 历史
Sayantan Karmakar 提交于 2022-05-06 12:53 . market fetching setup
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
future: {
webpack5: true, // by default, if you customize webpack config, they switch back to version 4.
// Looks like backward compatibility approach.
},
webpack(config) {
config.resolve.fallback = {
...config.resolve.fallback, // if you miss it, all the other options in fallback, specified
// by next.js will be dropped. Doesn't make much sense, but how it is
fs: false, // the solution
};
return config;
},
};
module.exports = nextConfig;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/qi-chuangling/OBex.git
git@gitee.com:qi-chuangling/OBex.git
qi-chuangling
OBex
OBex
main

搜索帮助