Releases: BuilderIO/hydration-overlay
Releases · BuilderIO/hydration-overlay
@builder.io/[email protected]
@builder.io/[email protected]
Minor Changes
-
e0807d1: Mark @spotlightjs/spotlight as an optional peer dependency
If you enable spotlight integration, please install the dependency explicitly
in your project.npm install @spotlightjs/spotlight --dev yarn add @spotlightjs/spotlight --dev pnpm add @spotlightjs/spotlight --dev
-
22b63c5: Support React 18
Transition from react-diff-viewer-continued
to a maintained fork react-diff-viewer-continued
that supports React 18. -
b1a2f7b: chore: update build toolchain
@builder.io/[email protected]
Minor Changes
- 1075a84: Added a Spotlight integration in hydration-overlay
@builder.io/[email protected]
Patch Changes
- ee99699: Fix: remove filename checks (improves hydration error check)
@builder.io/[email protected]
Patch Changes
- 4154b00: add missing
type: 'module'
config
@builder.io/[email protected]
@builder.io/[email protected]
Patch Changes
-
669ff5f: - Feature: new webpack plugin:
const { withHydrationOverlayWebpack, } = require("@builder.io/react-hydration-overlay/webpack"); /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, webpack: (config, options) => { config = withHydrationOverlayWebpack({ appRootSelector: "#__next", isMainAppEntryPoint: (entryPointName) => !options.isServer && (entryPointName === "pages/_app" || entryPointName === "main-app"), })(config); return config; }, }; module.exports = nextConfig;