Spaces:
Sleeping
Sleeping
/** @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; | |