NebulaKit works smoothly with Webpack 5.
The only requirement is to ensure Webpack can process CSS files, since NebulaKit ships styles as plain CSS. If you already have a React + Webpack setup, you only need a small addition to your configuration.
npm install --save-dev style-loader css-loadermodule.exports = { module: { rules: [ { test: /\.css$/, use: ['style-loader', 'css-loader'] } ] }}Then import styles and wrap your entire App with NebkitProvider the same as in the Vite example.