UNPKG

@lit-component/message-box

Version:

A simple message-box web component

21 lines (18 loc) 363 B
/** * @license * Copyright 2021 Google LLC * SPDX-License-Identifier: BSD-3-Clause */ import {legacyPlugin} from '@web/dev-server-legacy'; export default { nodeResolve: true, preserveSymlinks: true, plugins: [ legacyPlugin({ polyfills: { // Manually imported in index.html file webcomponents: false, }, }), ], };