Skip to content
Snippets Groups Projects
next.config.mjs 238 B
Newer Older
  • Learn to ignore specific revisions
  • Alex Yang's avatar
    Alex Yang committed
    import { webpackPlugin } from '@llamaindex/tool/plugin'
    
    /** @type {import('next').NextConfig} */
    const nextConfig = {
      webpack: (config) => {
        config.plugins.push(webpackPlugin())
        return config
      }
    };
    
    export default nextConfig;