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 8bb996a commit cd5b633Copy full SHA for cd5b633
index.js
@@ -33,9 +33,9 @@ module.exports = (api, options) => {
33
host: args.host || process.env.HOST || projectDevServerOptions.host || defaults.host,
34
port,
35
https: args.https || projectDevServerOptions.https || defaults.https,
36
- lanIp: args["lan-ip"] || defaults.lanIp
+ lanIp: args['lan-ip'] || defaults.lanIp
37
}
38
- console.log(args);
+ console.log(args)
39
const wwwDirPath = api.resolve('www')
40
info('your www/index.html is overwrited.')
41
copyRedirectHtml(serveArgs, wwwDirPath)
0 commit comments