ente/next.config.js

35 lines
1,007 B
JavaScript
Raw Normal View History

2020-10-03 14:21:56 +00:00
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
});
2021-06-15 19:07:01 +00:00
const withWorkbox = require('@ente-io/next-with-workbox');
2021-12-03 14:48:05 +00:00
const { withSentryConfig } = require('@sentry/nextjs');
2021-03-08 11:59:14 +00:00
2021-06-15 09:07:32 +00:00
const cp = require('child_process');
const gitSha = cp.execSync('git rev-parse --short HEAD', {
cwd: __dirname,
encoding: 'utf8',
});
2021-03-08 11:59:14 +00:00
2021-12-03 14:48:05 +00:00
module.exports = withSentryConfig(
withWorkbox(
withBundleAnalyzer({
env: {
SENTRY_RELEASE: gitSha,
},
workbox: {
swSrc: 'src/serviceWorker.js',
exclude: [/manifest\.json$/i],
},
// https://dev.to/marcinwosinek/how-to-add-resolve-fallback-to-webpack-5-in-nextjs-10-i6j
webpack: (config, { isServer }) => {
if (!isServer) {
config.resolve.fallback.fs = false;
}
return config;
},
})
),
{ release: gitSha }
);