Socket
Book a DemoInstallSign in
Socket

@lit-labs/nextjs

Package Overview
Dependencies
Maintainers
11
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lit-labs/nextjs

Next.js Plugin for Lit SSR

latest
Source
npmnpm
Version
0.2.4
Version published
Weekly downloads
2.1K
40.46%
Maintainers
11
Weekly downloads
 
Created
Source

@lit-labs/nextjs

Integrates Lit SSR with Next.js to enable deep server rendering of Lit components.

[!WARNING]

This package is part of Lit Labs. It is published in order to get feedback on the design and may receive breaking changes or stop being supported.

Please read our Lit Labs documentation before using this library in production.

Overview

Lit components can be imported and added to Next.js projects but by default they will only be shallowly rendered on the server. That is, the Lit component's tag and attributes set via JSX will be rendered, but the component's shadow DOM will not be.

This package provides a plugin for Next.js that incorporates tools from @lit-labs/ssr-react into the project for deep server rendering of Lit components.

Usage

// next.config.js
const withLitSSR = require('@lit-labs/nextjs')();

/** @type {import('next').NextConfig} */
const nextConfig = {
  // Add your own config here
  reactStrictMode: true,
  swcMinify: true,
};

module.exports = withLitSSR(nextConfig);

Options

You can provide an options object as you create the plugin.

e.g.

const withLitSSR = require('@lit-labs/nextjs')({
  addDeclarativeShadowDomPolyfill: true,
  webpackModuleRulesTest: /\/my-app-pages\/.*\.tsx?$/,
});

The following options are supported:

PropertyTypeDescription
addDeclarativeShadowDomPolyfillbooleanIf true, the client bundle will include a script that applies the Declarative Shadow DOM polyfill. Defaults to true.
webpackModuleRulesTestRegExpConfigure the RegExp used to inject Lit SSR support. Ideally it should match the entrypoint to your routes. Defaults to /\/pages\/.*\.(?:j|t)sx?$|\/app\/.*\.(?:j|t)sx?$/.
webpackModuleRulesExcludeArray<RegExp>Allows to pass an array of RegExp to exclude files from being processed by the plugin. Defaults to [/next\/dist\//, /node_modules/].

Considerations

The plugin has been tested with Next.js versions 13 and 14.

If you are using Next.js App Router, you must make sure any Lit components you wish to use are beyond the 'use client'; boundary. These will still be server rendered for the initial page load just like they did for the Pages Router.

By default, components in the App Router are React Server Components (RSCs). Deep SSR of Lit components does not work within server components as they result in React hydration mismatch due to the presence of the <template> element in the RSC payload containing the serialized server component tree, and the custom element definitions will not be included with the client bundle either when imported in server component files.

Contributing

Please see CONTRIBUTING.md.

Keywords

lit

FAQs

Package last updated on 11 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts