Files
moemail/next.config.ts
2025-12-07 17:50:27 +08:00

40 lines
860 B
TypeScript

import withPWA from 'next-pwa'
import createNextIntlPlugin from 'next-intl/plugin'
import { setupDevPlatform } from '@cloudflare/next-on-pages/next-dev';
async function setup() {
if (process.env.NODE_ENV === 'development') {
await setupDevPlatform()
}
}
setup()
const withNextIntl = createNextIntlPlugin('./app/i18n/request.ts')
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'avatars.githubusercontent.com',
},
{
protocol: 'https',
hostname: '*.googleusercontent.com',
}
],
},
};
const withPWAConfigured = withPWA({
dest: 'public',
register: true,
skipWaiting: true,
disable: process.env.NODE_ENV === 'development',
}) as any
const configWithPWA = withPWAConfigured(nextConfig as any) as any
export default withNextIntl(configWithPWA)