Bundle.js

Next.js Integration Now Stable

August 10, 2025 By the Dev Team

We're thrilled to announce that our Next.js integration has reached official stable status! This means you can now rely on Bundle.js for production-grade Next.js applications with full SSR/SSG support.

Key Features

  • Seamless hybrid SSR/SSG support with automatic bundling
  • 30% faster build times through Next.js-specific optimizations
  • Zero-config API routes bundling and type-checking

Getting Started

next.config.js

const withBundle = require('bundle.js/next');

module.exports = withBundle({
  // Next.js configuration options...
});

                    

Performance Improvements

Initial Build Time 58% faster
12s 7s
Hot Module Reloading 75% faster
3.2s 0.8s

Try It Today

Want to get started? Just install the Bundle.js CLI and run create-next-app with our template:


npx create-next-app@latest my-next-app --use-npm
cd my-next-app
npm install bundle.js@next

                    

Or check out our complete Next.js integration guide.

Previous Post

WebAssembly First-Class Support

August 26, 2025 Bundling