We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
Error message on run
node_modules/vue-cli-plugin-prerender-spa/index.js:101 } catch { ^ SyntaxError: Unexpected token {
Can you add in Line index.js:101 a exception parameter? Informations
from
} catch { <------- if (existsSync(oldConfigPath)) { options = JSON.parse(readFileSync(oldConfigPath).toString("utf-8")); } }
to
} catch(ex) { <------- if (existsSync(oldConfigPath)) { options = JSON.parse(readFileSync(oldConfigPath).toString("utf-8")); } }
Additional context Package version: 1.1.1 Vue version: 2.5.21 Vue CLI version: 3.3.0
The text was updated successfully, but these errors were encountered:
I get this error on node version v8.15.0 In node version v10.x is works perfectly
Sorry, something went wrong.
Fixes #17 (#18)
52dbc6c
Running `npm run build` fails with the below error, this ought to stop that from happening (though the `err` variable will go unused). Fixes #17
Hotfix uploaded to npm as v1.1.2, thanks for the notice!
Merge tag '1.1.3' into develop
4af3e93
Release version 1.1.3 - Switch to a Babel setup to support Node.js 8.x #17 - Support Vue CLI 3.3 "publicPath" setting #19
Successfully merging a pull request may close this issue.
Describe the bug
Error message on run
Can you add in Line index.js:101 a exception parameter? Informations
from
to
Additional context
Package version: 1.1.1
Vue version: 2.5.21
Vue CLI version: 3.3.0
The text was updated successfully, but these errors were encountered: