-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnext.config.mjs
34 lines (29 loc) · 876 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
// @ts-check
import Analyzer from '@next/bundle-analyzer';
import MDX from '@next/mdx';
import withPlaiceholder from '@plaiceholder/next';
import path from 'path';
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
output: 'export',
reactStrictMode: false,
cleanDistDir: true,
webpack: (config) => {
config.resolve.alias['@/base'] = path.resolve(process.cwd(), 'src/styles/base');
return config;
},
images: {
loader: 'custom',
loaderFile: './src/utils/imageLoader.ts',
minimumCacheTTL: 60,
remotePatterns: [
{ protocol: 'https', hostname: 'www.drishxd.dev' },
{ protocol: 'https', hostname: 'images.ctfassets.net' }
]
}
};
const withBundleAnalyzer = Analyzer({ enabled: process.env.ANALYZE === 'true' });
const withMDX = MDX();
export default withBundleAnalyzer(withMDX(withPlaiceholder(nextConfig)));