-
Notifications
You must be signed in to change notification settings - Fork 9
/
next.config.js
52 lines (46 loc) · 1.19 KB
/
next.config.js
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
40
41
42
43
44
45
46
47
48
49
50
51
52
'use strict';
// eslint-disable-next-line @typescript-eslint/no-var-requires
const dns = require('dns');
dns.setDefaultResultOrder('ipv4first');
// eslint-disable-next-line @typescript-eslint/no-var-requires
require('./src/lib/plugins/index.js');
// eslint-disable-next-line @typescript-eslint/no-var-requires
const withMDX = require('@next/mdx')({
extension: /\.(md|mdx)$/,
options: {
remarkPlugins: [],
rehypePlugins: [],
},
});
// Next configuration with support for rewrting API to existing common services
const nextConfig = {
output: 'standalone',
reactStrictMode: true,
pageExtensions: ['mdx', 'md', 'jsx', 'js', 'tsx', 'ts'],
basePath: process.env.BASE_PATH || '',
transpilePackages: ['@gen3/core', '@gen3/frontend'],
webpack: (config) => {
config.infrastructureLogging = {
level: 'error',
};
return config;
},
experimental: {
esmExternals: true,
instrumentationHook: true,
},
async headers() {
return [
{
source: '/(.*)?', // Matches all pages
headers: [
{
key: 'X-Frame-Options',
value: 'SAMEORIGIN',
},
],
},
];
},
};
module.exports = withMDX(nextConfig);