Building for production
This page focuses on recommendations for building an application that uses Lit components for production. For recommendations on build steps to perform on source code prior to publishing a reusable Lit component to npm, see Publishing.
When building an application that includes Lit components, you can use common JavaScript build tools like Rollup or webpack to prepare your source code and dependencies for serving in a production environment.
See Requirements for a full list of requirements for building Lit code, which apply to both development and production.
In addition to those minimum requirements, this page describes optimizations you should consider when preparing code for production, as well as a concrete Rollup configuration that implements them.
Preparing code for production
Permalink to “Preparing code for production”Lit projects benefit from the same build-time optimizations as other web projects. The following optimizations are recommended when serving Lit applications in production:
- Bundling Javascript modules to reduce network requests (for example, using Rollup or webpack).
- Minifying Javascript code for smaller payload sizes (Terser works well for Lit, because it supports modern JavaScript).
- Serving modern code to modern browsers as it is generally smaller and faster, and falling back to compiled code on older browsers.
- Hashing static assets including bundled JavaScript for easier cache invalidation.
- Enabling serve-time compression (such as gzip or brotli) for fewer bytes over the wire.
In addition, note that because Lit templates are defined inside JavaScript template string literals, they don't get processed by standard HTML minifiers. Adding a plugin that minifies the HTML in template string literals can result in a modest decrease in code size. Several packages are available to perform this optimization:
- Rollup: rollup-plugin-minify-html-literals
- Webpack: minify-html-literals-loader
Building with Rollup
Permalink to “Building with Rollup”There are many tools you can use to perform the required and optional build steps necessary to serve Lit code, and Lit does not require any one specific tool. However, we recommend Rollup because it's designed to work with the standard ES module format and output optimal code that leverages native modules on the client.
There are many ways to set up Rollup to bundle your project. The Modern Web project maintains an excellent Rollup plugin @web/rollup-plugin-html
that helps tie a number of best-practices for building applications together into an easy-to-use package. Example configurations using this plugin are described below.
Modern-only build
Permalink to “Modern-only build”The annotated rollup.config.js
file below will build an application that meets the modern browser build requirements and production optimizations described on this page. This configuration is suitable for serving to modern browsers that can run ES2019 JS without polyfills.
Required node modules:
rollup.config.js:
Running the rollup build:
Modern + legacy build
Permalink to “Modern + legacy build”The following configuration generates a hybrid build with two sets of JS bundles, one for modern browsers, and one for legacy browsers. The modern bundles are optimistically pre-fetched, and client-side feature-detection is used to determine whether to load the smaller/faster modern builds or the legacy build (and any required polyfills), per the legacy browser build requirements.
Required node modules:
rollup.config.js:
Building with standalone lit-html
Permalink to “Building with standalone lit-html”If you're using lit-html as a standalone templating library, you can follow almost all of the guidance for building with Lit. The only difference is that lit-html doesn't require the full Web Components polyfills. You'll only need the template polyfill.
Using the template polyfill
Permalink to “Using the template polyfill”To run lit-html on Internet Explorer 11, which doesn't support the <template>
element, you'll need a polyfill. You can use the template polyfill included with the Web Components polyfills.
Install the template polyfill:
Use the template polyfill:
Note: when compiling for IE11, the Babel polyfills need to be bundled separately from the application code, and loaded before the template polyfill.