mirror of
https://github.com/jlengrand/open-wc.git
synced 2026-03-10 08:31:19 +00:00
16 lines
383 B
JavaScript
16 lines
383 B
JavaScript
import { esbuildPlugin } from '@web/dev-server-esbuild';
|
|
import { hmrPlugin, presets } from '../../index.mjs';
|
|
|
|
export default {
|
|
open: 'packages/dev-server-hmr/demo/fast-element/',
|
|
rootDir: '../..',
|
|
nodeResolve: true,
|
|
plugins: [
|
|
esbuildPlugin({ ts: true }),
|
|
hmrPlugin({
|
|
exclude: ['**/*/node_modules/**/*'],
|
|
presets: [presets.fastElement],
|
|
}),
|
|
],
|
|
};
|