kopia lustrzana https://github.com/bugout-dev/moonstream
16 wiersze
364 B
JavaScript
16 wiersze
364 B
JavaScript
module.exports = {
|
|
reactStrictMode: true,
|
|
target: "serverless",
|
|
trailingSlash: true,
|
|
presets: [require.resolve("next/babel")],
|
|
webpack: (config, { isServer }) => {
|
|
// Fixes npm packages that depend on `fs` module
|
|
if (!isServer) {
|
|
// config.node = { fs: 'empty' };
|
|
config.resolve.fallback.fs = false;
|
|
}
|
|
|
|
return config;
|
|
},
|
|
};
|