-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnext.config.mjs
39 lines (35 loc) · 929 Bytes
/
next.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// @ts-check
/**
* Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation.
* This is especially useful for Docker builds.
*/
!process.env.SKIP_ENV_VALIDATION && (await import('./src/env/server.mjs'))
import bundleAnalyzer from '@next/bundle-analyzer'
const withBundleAnalyzer = bundleAnalyzer({
enabled: process.env.ANALYZE === 'true',
})
const config = withBundleAnalyzer({
reactStrictMode: true,
swcMinify: true,
/** Next.js i18n docs:
* @see https://nextjs.org/docs/advanced-features/i18n-routing
* Reference repo for i18n:
* @see https://github.com/juliusmarminge/t3-i18n
**/
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**.googleusercontent.com',
},
],
},
i18n: {
locales: ['en'],
defaultLocale: 'en',
},
experimental: {
swcPlugins: [['next-superjson-plugin', {excluded: []}]],
},
})
export default config