/** @type {import('next').NextConfig} */ const withBundleAnalyzer = require('@next/bundle-analyzer')({ enabled: process.env.ANALYZE === 'true' }) // const withPWA = require('next-pwa')({ // dest: 'public', // register: true, // skipWaiting: true, // disable: true, // }); module.exports = withBundleAnalyzer({ reactStrictMode: true, async rewrites() { return [ // legacy oauth endpoints { source: '/platform/verify/:slug*', destination: '/verify/:slug*' }, { source: '/@:username', destination: '/users/:username' }, { source: '/api/v1/roblox/users/:slug*', destination: 'https://users.roblox.com/:slug*' }, { source: '/api/v1/roblox/groups/:slug*', destination: 'https://groups.roblox.com/:slug*' }, { source: '/api/v1/roblox/games/:slug*', destination: 'https://games.roblox.com/:slug*' }, { source: '/api/v1/roblox/thumbnails/:slug*', destination: 'https://thumbnails.roblox.com/:slug*' }, { source: '/api/v1/ip-api/:slug*', destination: 'http://ip-api.com/:slug*' } ]; }, async redirects() { return [ { source: '/login', destination: '/auth/login', permanent: true }, { source: '/signup', destination: '/auth/signup', permanent: true }, { source: '/logout', destination: '/auth/logout', permanent: true }, { source: '/platform', destination: '/platform/home', permanent: true }, { source: '/platform/:slug*', destination: '/:slug*', permanent: false }, { source: '/users/:slug', destination: '/@:slug', permanent: false }, { source: '/user/:slug', destination: '/@:slug', permanent: false }, { source: '/invite/:slug*', destination: '/invitation/:slug*', permanent: false }, { source: '/AxesysAPI/:slug*', destination: '/api/v1/axesys/:slug*', permanent: false }, { source: '/api/v1/AxesysAPI/:slug*', destination: '/api/v1/axesys/:slug*', permanent: false } ]; } });