| Sean McCullough | 86b5686 | 2025-04-18 13:04:03 -0700 | [diff] [blame] | 1 | import { hmrPlugin, presets } from "@open-wc/dev-server-hmr"; |
| 2 | |||||
| 3 | export default { | ||||
| 4 | port: 8000, | ||||
| 5 | nodeResolve: true, | ||||
| 6 | |||||
| 7 | plugins: [ | ||||
| 8 | hmrPlugin({ | ||||
| 9 | include: ["../**/*"], | ||||
| 10 | presets: [presets.lit], | ||||
| 11 | }), | ||||
| 12 | ], | ||||
| 13 | }; | ||||