File tree Expand file tree Collapse file tree 1 file changed +32
-32
lines changed
Expand file tree Collapse file tree 1 file changed +32
-32
lines changed Original file line number Diff line number Diff line change 11/** @type {import("next").NextConfig } */
22const nextConfig = {
3- eslint : {
4- ignoreDuringBuilds : true ,
5- } ,
6- images : {
7- remotePatterns : [
8- {
9- protocol : "https" ,
10- hostname : "prod-files-secure.s3.us-west-2.amazonaws.com" ,
11- port : "" ,
12- pathname : "**" ,
13- } ,
14- ] ,
15- } ,
16- async redirects ( ) {
17- return [
18- {
19- source : "/:path*" ,
20- has : [
21- {
22- type : "host" ,
23- value : "norm-atlas.no" ,
24- } ,
25- ] ,
26- destination : "https://pathogens.no/dashboards/norm-atlas" ,
27- permanent : true ,
28- } ,
29- ] ;
30- } ,
31- experimental : {
32- reactCompiler : true ,
33- ppr : "incremental" ,
34- } ,
3+ eslint : {
4+ ignoreDuringBuilds : true ,
5+ } ,
6+ images : {
7+ remotePatterns : [
8+ {
9+ protocol : "https" ,
10+ hostname : "prod-files-secure.s3.us-west-2.amazonaws.com" ,
11+ port : "" ,
12+ pathname : "**" ,
13+ } ,
14+ ] ,
15+ } ,
16+ async redirects ( ) {
17+ return [
18+ {
19+ source : "/:path*" ,
20+ has : [
21+ {
22+ type : "host" ,
23+ value : "norm-atlas.no" ,
24+ } ,
25+ ] ,
26+ destination : "https://pathogens.no/dashboards/norm-atlas" ,
27+ permanent : true ,
28+ } ,
29+ ] ;
30+ } ,
31+ cacheComponents : true ,
32+ experimental : {
33+ reactCompiler : true ,
34+ } ,
3535} ;
3636
3737export default nextConfig ;
You can’t perform that action at this time.
0 commit comments