Skip to content

Commit 54c15ea

Browse files
committed
fix: avoid passing index as path
1 parent 6ca265a commit 54c15ea

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
@@ -161,7 +161,7 @@ module.exports = class Service {
161161
'./config/css',
162162
'./config/prod',
163163
'./config/app'
164-
].map(idToPlugin)
164+
].map((id) => idToPlugin(id))
165165

166166
if (inlinePlugins) {
167167
plugins = useBuiltIn !== false

0 commit comments

Comments
 (0)