File size: 244 Bytes
88be6fd
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
/** @type {import('next').NextConfig} */
import fs from "fs";
import webpack from "./webpack.config.mjs";

const nextConfig = JSON.parse(fs.readFileSync("./next.config.json", "utf-8"));
nextConfig.webpack = webpack;

export default nextConfig;