File tree 1 file changed +5
-5
lines changed
packages/@vue/cli-service/lib
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -257,7 +257,7 @@ module.exports = class Service {
257
257
258
258
loadUserOptions ( ) {
259
259
// vue.config.js
260
- let fileConfig , pkgConfig , resolved , resovledFrom
260
+ let fileConfig , pkgConfig , resolved , resolvedFrom
261
261
const configPath = (
262
262
process . env . VUE_CLI_SERVICE_CONFIG_PATH ||
263
263
path . resolve ( this . context , 'vue.config.js' )
@@ -299,13 +299,13 @@ module.exports = class Service {
299
299
)
300
300
}
301
301
resolved = fileConfig
302
- resovledFrom = 'vue.config.js'
302
+ resolvedFrom = 'vue.config.js'
303
303
} else if ( pkgConfig ) {
304
304
resolved = pkgConfig
305
- resovledFrom = '"vue" field in package.json'
305
+ resolvedFrom = '"vue" field in package.json'
306
306
} else {
307
307
resolved = this . inlineOptions || { }
308
- resovledFrom = 'inline options'
308
+ resolvedFrom = 'inline options'
309
309
}
310
310
311
311
// normalize some options
@@ -327,7 +327,7 @@ module.exports = class Service {
327
327
// validate options
328
328
validate ( resolved , msg => {
329
329
error (
330
- `Invalid options in ${ chalk . bold ( resovledFrom ) } : ${ msg } `
330
+ `Invalid options in ${ chalk . bold ( resolvedFrom ) } : ${ msg } `
331
331
)
332
332
} )
333
333
You can’t perform that action at this time.
0 commit comments