We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20630f5 commit c8c592aCopy full SHA for c8c592a
src/webpackCompile.ts
@@ -9,6 +9,10 @@ module.exports = async (ctx: any) => {
9
return;
10
}
11
12
+ if (!ctx.opts.options || !ctx.opts.options.argv) {
13
+ return;
14
+ }
15
+
16
const argv = argvParse(ctx.opts.options.argv.join(' '));
17
if (argv.livereload || argv.l) {
18
src/webpackServe.ts
@@ -21,6 +21,10 @@ module.exports = async (ctx: any) => {
21
22
23
24
25
26
27
28
29
if (!argv.livereload && !argv.l) {
30
0 commit comments