21 lines
363 B
JavaScript
21 lines
363 B
JavaScript
/**
|
|
* @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,
|
|
},
|
|
}),
|
|
],
|
|
};
|