import withPayload from './packages/next/src/withPayload.js' import bundleAnalyzer from '@next/bundle-analyzer' const withBundleAnalyzer = bundleAnalyzer({ enabled: process.env.ANALYZE === 'true', }) export default withBundleAnalyzer( withPayload({ reactStrictMode: false, webpack: (webpackConfig) => { webpackConfig.resolve.extensionAlias = { '.js': ['.ts', '.tsx', '.js', '.jsx'], '.mjs': ['.mts', '.mjs'], '.cjs': ['.cts', '.cjs'], } return webpackConfig }, async redirects() { return [ { destination: '/admin', permanent: true, source: '/', }, ] }, }), )