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 346f95d commit 701d02aCopy full SHA for 701d02a
packages/@vue/cli-ui/apollo-server/connectors/plugins.js
@@ -96,12 +96,17 @@ function findPlugins (deps, file) {
96
versionRange: deps[id],
97
official: isOfficialPlugin(id) || id === CLI_SERVICE,
98
installed: fs.existsSync(dependencies.getPath({ id, file })),
99
- website: getPluginLink(id),
+ website: getLink(id),
100
baseDir: file
101
})
102
)
103
}
104
105
+function getLink (id) {
106
+ if (id === CLI_SERVICE) return 'https://cli.vuejs.org/'
107
+ return getPluginLink(id)
108
+}
109
+
110
function getPlugins (file) {
111
const plugins = pluginsStore.get(file)
112
if (!plugins) return []
0 commit comments