Skip to content

Latest commit

 

History

History

next-lighter-config

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

@lighting-beetle/next-lighter-config

Custom Next.js config designed for building pages without Next.js runtime.

Quick Start

// next.config.js
import { createConfig } from "@lighting-beetle/next-lighter-config";

export default createConfig();

Features

  • MDX with frontMatter support
  • CSS/SCSS
  • Analyze bundle size

Options

// next.config.js
import { createConfig } from "@lighting-beetle/next-lighter-config";

export default createConfig({
  /* Next.js custom config */
  nextConfig: { /* your custom next config */ },
  /* Next.js plugins */
  plugins: [/* your custom next plugins */],
  /* analyze bundle with @next/bundle-analyzer */
  analyzeBundle: false /* boolean */,
});