File size: 239 Bytes
177c3f8
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import type { NextConfig } from "next";
import path from "path";

const nextConfig: NextConfig = {
  /* config options here */
  output: 'export',
  logging: {
    fetches: {
      fullUrl: true,
    },
  },
};

export default nextConfig;