2023-05-08 17:43:29 +02:00

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,
},
});
});