forked from uc-cdis/mc2dp-data-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.config.js
More file actions
47 lines (41 loc) · 1.09 KB
/
next.config.js
File metadata and controls
47 lines (41 loc) · 1.09 KB
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
'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 = {
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;
},
async headers() {
return [
{
source: '/(.*)?', // Matches all pages
headers: [
{
key: 'X-Frame-Options',
value: 'SAMEORIGIN',
},
],
},
];
},
};
module.exports = withMDX(nextConfig);