vkashti / patches / next-bootstrap.js
next-bootstrap.js
Raw

// This is a patched bootstrap file to be used in place of Next.js's default bootstrap
// It fixes the __non_webpack_require__ error

// Define __non_webpack_require__ globally
global.__non_webpack_require__ = require;

// Now load the actual Next.js bootstrap
require('next/dist/bin/next');