feat: v4.0.0 (#1016)

Co-authored-by: Denys Konovalov <kontakt@denyskon.de>
Co-authored-by: Mathieu COSYNS <64072917+Mathieu-COSYNS@users.noreply.github.com>
This commit is contained in:
Daniel Lautzenheiser
2024-01-03 15:14:09 -05:00
committed by GitHub
parent 682576ffc4
commit 799c7e6936
732 changed files with 48477 additions and 10886 deletions

View File

@ -1,13 +1,14 @@
const withPWA = require('next-pwa')({
publicExcludes: ['!bulletins/**/*'],
dest: 'public'
dest: 'public',
});
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true'
enabled: process.env.ANALYZE === 'true',
});
const redirects = [
{ source: '/docs', destination: '/docs/intro', permanent: true },
{ source: '/chat', destination: 'https://discord.gg/ZWJM9pBMjj', permanent: true },
];
@ -28,7 +29,7 @@ let config = {
},
],
},
}
};
if (process.env.NODE_ENV === 'production') {
config = withPWA(config);
@ -36,4 +37,4 @@ if (process.env.NODE_ENV === 'production') {
config = withBundleAnalyzer(config);
}
module.exports = config
module.exports = config;