title | eleventyNavigation | versionLinks | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
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.
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
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.
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:
npm i --save-dev rollup \
@web/rollup-plugin-html \
@web/rollup-plugin-copy \
@rollup/plugin-node-resolve \
@rollup/plugin-terser \
rollup-plugin-minify-html-literals \
rollup-plugin-summary
rollup.config.js:
// Import rollup plugins
import { rollupPluginHTML as html } from '@web/rollup-plugin-html';
import {copy} from '@web/rollup-plugin-copy';
import resolve from '@rollup/plugin-node-resolve';
import terser from '@rollup/plugin-terser';
import {summary] from 'rollup-plugin-summary';
import pkgMinifyHTML from 'rollup-plugin-minify-html-literals';
const minifyHTML = pkgMinifyHTML.default;
export default {
plugins: [
// Entry point for application build; can specify a glob to build multiple
// HTML files for non-SPA app
html({
input: 'index.html',
}),
// Resolve bare module specifiers to relative paths
resolve(),
// Minify HTML template literals
minifyHTML(),
// Minify JS
terser({
ecma: 2020,
module: true,
warnings: true,
}),
// Print bundle summary
summary(),
// Optional: copy any static assets to build directory
copy({
patterns: ['images/**/*'],
}),
],
output: {
dir: 'build',
},
preserveEntrySignatures: 'strict',
};
Running the rollup build:
rollup -c
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:
npm i --save-dev rollup \
@web/rollup-plugin-html \
@web/rollup-plugin-polyfills-loader \
@web/rollup-plugin-copy \
@rollup/plugin-node-resolve \
@rollup/plugin-babel \
@rollup/plugin-terser \
rollup-plugin-minify-html-literals \
rollup-plugin-summary
rollup.config.js:
// Import rollup plugins
import html from '@web/rollup-plugin-html';
import polyfillsLoader from '@web/rollup-plugin-polyfills-loader';
import {copy} from '@web/rollup-plugin-copy';
import resolve from '@rollup/plugin-node-resolve';
import {getBabelOutputPlugin} from '@rollup/plugin-babel';
import {terser} from 'rollup-plugin-terser';
import minifyHTML from 'rollup-plugin-minify-html-literals';
import summary from 'rollup-plugin-summary';
// Configure an instance of @web/rollup-plugin-html
const htmlPlugin = html({
rootDir: './',
flattenOutput: false,
});
export default {
// Entry point for application build; can specify a glob to build multiple
// HTML files for non-SPA app
input: 'index.html',
plugins: [
htmlPlugin,
// Resolve bare module specifiers to relative paths
resolve(),
// Minify HTML template literals
minifyHTML(),
// Minify JS
terser({
module: true,
warnings: true,
}),
// Inject polyfills into HTML (core-js, regnerator-runtime, webcoponents,
// lit/polyfill-support) and dynamically loads modern vs. legacy builds
polyfillsLoader({
modernOutput: {
name: 'modern',
},
// Feature detection for loading legacy bundles
legacyOutput: {
name: 'legacy',
test: '!!Array.prototype.flat',
type: 'systemjs',
},
// List of polyfills to inject (each has individual feature detection)
polyfills: {
hash: true,
coreJs: true,
regeneratorRuntime: true,
fetch: true,
webcomponents: true,
// Custom configuration for loading Lit's polyfill-support module,
// required for interfacing with the webcomponents polyfills
custom: [
{
name: 'lit-polyfill-support',
path: 'node_modules/lit/polyfill-support.js',
test: "!('attachShadow' in Element.prototype)",
module: false,
},
],
},
}),
// Print bundle summary
summary(),
// Optional: copy any static assets to build directory
copy({
patterns: ['data/**/*', 'images/**/*'],
}),
],
// Specifies two JS output configurations, modern and legacy, which the HTML plugin will
// automatically choose between; the legacy build is compiled to ES5
// and SystemJS modules
output: [
{
// Modern JS bundles (no JS compilation, ES module output)
format: 'esm',
chunkFileNames: '[name]-[hash].js',
entryFileNames: '[name]-[hash].js',
dir: 'build',
plugins: [htmlPlugin.api.addOutput('modern')],
},
{
// Legacy JS bundles (ES5 compilation and SystemJS module output)
format: 'esm',
chunkFileNames: 'legacy-[name]-[hash].js',
entryFileNames: 'legacy-[name]-[hash].js',
dir: 'build',
plugins: [
htmlPlugin.api.addOutput('legacy'),
// Uses babel to compile JS to ES5 and modules to SystemJS
getBabelOutputPlugin({
compact: true,
presets: [
[
'@babel/preset-env',
{
targets: {
ie: '11',
},
modules: 'systemjs',
},
],
],
}),
],
},
],
preserveEntrySignatures: false,
};
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.
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:
npm i @webcomponents/template
Use the template polyfill:
<script src="./node_modules/@webcomponents/template/template.min.js"></script>
Note: when compiling for IE11, the Babel polyfills need to be bundled separately from the application code, and loaded before the template polyfill.