@lit-labs/nextjs
Version:
Next.js Plugin for Lit SSR
18 lines • 515 B
TypeScript
/**
* @license
* Copyright 2023 Google LLC
* SPDX-License-Identifier: BSD-3-Clause
*/
import type { NextConfig } from 'next';
/**
* Options for the Lit SSR plugin
*/
interface LitSsrPluginOptions {
/**
* Whether to include the polyfill for Declarative Shadow DOM. Defaults to true.
*/
addDeclarativeShadowDomPolyfill?: boolean;
}
declare const _default: (pluginOptions?: LitSsrPluginOptions) => ((nextConfig: NextConfig) => NextConfig);
export = _default;
//# sourceMappingURL=index.d.ts.map