mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-08 09:04:45 +01:00
15 lines
325 B
JavaScript
15 lines
325 B
JavaScript
module.exports = {
|
|
reactStrictMode: true,
|
|
publicRuntimeConfig: {
|
|
CI: process.env.CI,
|
|
PLAYWRIGHT: process.env.PLAYWRIGHT
|
|
},
|
|
webpack: (config, { isServer }) => {
|
|
// Fixes npm packages that depend on `fs` module
|
|
if (!isServer) {
|
|
config.resolve.fallback.fs = false;
|
|
}
|
|
return config;
|
|
},
|
|
};
|