Skip to content

Commit a13c90f

Browse files
committed
fix: avoid passing index as path
1 parent f942cc1 commit a13c90f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/@vue/cli-service/lib/Service.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ module.exports = class Service {
157157
'./config/css',
158158
'./config/prod',
159159
'./config/app'
160-
].map(idToPlugin)
160+
].map((id) => idToPlugin(id))
161161

162162
if (inlinePlugins) {
163163
plugins = useBuiltIn !== false

0 commit comments

Comments
 (0)