mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-23 21:07:20 +00:00
11 lines
186 B
JavaScript
11 lines
186 B
JavaScript
import gulp from "gulp";
|
|
import { startDevServer } from "@web/dev-server";
|
|
|
|
gulp.task("wds-watch-app", async () => {
|
|
startDevServer({
|
|
config: {
|
|
watch: true,
|
|
},
|
|
});
|
|
});
|