bruno/packages/bruno-app/next.config.js
2022-10-30 17:48:36 +05:30

14 lines
285 B
JavaScript

module.exports = {
reactStrictMode: true,
publicRuntimeConfig: {
CI: process.env.CI
},
webpack: (config, { isServer }) => {
// Fixes npm packages that depend on `fs` module
if (!isServer) {
config.resolve.fallback.fs = false;
}
return config;
},
};