import { Configuration } from 'webpack'; import { NextConfig } from 'next/dist/next-server/server/config'; import { WithLessOptions } from '../type'; /** * overrideWebpackConfig * * @param webpackConfig * @param nextConfig * @param pluginOptions * @returns {*} */ export default function overrideWebpackConfig({ webpackConfig, nextConfig, pluginOptions }: { webpackConfig: Configuration; nextConfig: NextConfig; pluginOptions: WithLessOptions; }): any;