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 8cf21b2 commit 309f8ddCopy full SHA for 309f8dd
README.md
@@ -66,13 +66,13 @@ Installation
66
First, install the package as a dependency in your package.json:
67
68
```sh
69
-$ npm install --save-dev preload-webpack-plugin
+$ npm install --save-dev @vue/preload-webpack-plugin
70
```
71
72
Alternatively, using yarn:
73
74
75
-yarn add -D preload-webpack-plugin
+yarn add -D @vue/preload-webpack-plugin
76
77
78
Usage
@@ -81,7 +81,7 @@ Usage
81
Next, in your Webpack config, `require()` the preload plugin as follows:
82
83
```js
84
-const PreloadWebpackPlugin = require('preload-webpack-plugin');
+const PreloadWebpackPlugin = require('@vue/preload-webpack-plugin');
85
86
87
and finally, configure the plugin in your Webpack `plugins` array after `HtmlWebpackPlugin`:
0 commit comments