forked from uc-cdis/commons-frontend-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
71 lines (65 loc) · 1.59 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
'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'],
transpilePackages: ['@gen3/core', '@gen3/frontend'],
webpack: (config) => {
config.infrastructureLogging = {
level: 'error',
};
return config;
},
experimental: {
esmExternals: true,
instrumentationHook: true,
turbo: {
moduleIdStrategy: 'deterministic',
},
},
async headers() {
return [
{
source: '/(.*)?', // Matches all pages
headers: [
{
key: 'X-Frame-Options',
value: 'SAMEORIGIN',
},
],
},
{
source: '/jupyter/(.*)?',
headers: [
{
key: 'X-Frame-Options',
value: 'SAMEORIGIN',
},
{
key: 'Cross-Origin-Embedder-Policy',
value: 'require-corp',
},
{
key: 'Cross-Origin-Opener-Policy',
value: 'same-origin',
},
],
},
];
},
};
module.exports = withMDX(nextConfig);