You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix to nginx statement (#22)
Missing end statement ;
Correction of $url -> $uri
* Update tag to reflect 1.1.4 release
* Fix typo in README
* Bump version in README badge
* Provide workaround for global installs in Puppeteer image
The NPM prefix needs to be set somewhere with write access for global packages, which the image doesn't set for the default prefix.
* Added information about customRendererConfig (#26)
* Fixes error if there's no pluginOptions.prerenderSpa in vue.config.js (#35)
* Bump lodash from 4.17.10 to 4.17.15
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.10 to 4.17.15.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.10...4.17.15)
Signed-off-by: dependabot[bot] <support@github.com>
* Bump version
@@ -225,6 +254,14 @@ job itself - rather, it is recommended to switch to a Node.js + Puppeteer
225
254
image where you can just use your `install && build` workflow without any
226
255
additional configuration. I personally use the `alekzonder/puppeteer` image.
227
256
257
+
If you do decide on using alekzonder/puppeteer and you want to install global npm packages. The following commands can be used prior to the installation of your required global package to ensure that you do not receive an `EACCES: permission denied, access '/usr/local/lib/node_modules'` error. I have tested this using Gitlab CI.
258
+
259
+
```
260
+
- mkdir ~/.npm-global
261
+
- npm config set prefix '~/.npm-global'
262
+
- npm install -g @vue/cli-service-global
263
+
```
264
+
228
265
### Compatibility with other Vue CLI plugins
229
266
230
267
This plugin should be compatible with any plugin that doesn't add a `mounted()`
0 commit comments