Skip to content

Commit cd5b633

Browse files
Replaced double-quote with single-quote
Removed console.log
1 parent 8bb996a commit cd5b633

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ module.exports = (api, options) => {
3333
host: args.host || process.env.HOST || projectDevServerOptions.host || defaults.host,
3434
port,
3535
https: args.https || projectDevServerOptions.https || defaults.https,
36-
lanIp: args["lan-ip"] || defaults.lanIp
36+
lanIp: args['lan-ip'] || defaults.lanIp
3737
}
38-
console.log(args);
38+
console.log(args)
3939
const wwwDirPath = api.resolve('www')
4040
info('your www/index.html is overwrited.')
4141
copyRedirectHtml(serveArgs, wwwDirPath)

0 commit comments

Comments
 (0)