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 fe92cce commit a677a98Copy full SHA for a677a98
src/server/webpack-plugin/util.js
@@ -1,4 +1,4 @@
1
-const { red, yellow, gray } = require('chalk')
+const { red, yellow } = require('chalk')
2
3
const prefix = `[vue-server-renderer-webpack-plugin]`
4
const warn = exports.warn = msg => console.error(red(`${prefix} ${msg}\n`))
@@ -15,9 +15,8 @@ export const validate = compiler => {
15
16
if (!compiler.options.externals) {
17
tip(
18
- 'It is recommended to externalize dependencies for better ssr performance.\n' +
19
- `See ${gray('https://github.com/vuejs/vue/tree/dev/packages/vue-server-renderer#externals')} ` +
20
- 'for more details.'
+ 'It is recommended to externalize dependencies in the server build for ' +
+ 'better build performance.'
21
)
22
}
23
0 commit comments