frontend / next.config.mjs
Praneeth Yerrapragada
feat: repo setup
88be6fd
raw
history blame
No virus
244 Bytes
/** @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;