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
Bug reported in Nuxt-Security : Baroshem/security#390 Original issue in Nuxt core : nuxt/nuxt#26011
OP had the initial code with console.log statement:
console.log
onUnmounted(() => { removeCardServiceSubscription(cardServicesSubscription) console.log("🚀 ~ onUnmounted ~ removeCardServiceSubscription(cardServicesSubscription):", removeCardServiceSubscription(cardServicesSubscription)) });
The plugin transformed the initial code by cutting out the beginning of the console.log statement :
[vite:build-import-analysis] Failed to parse source for import analysis because the content contains invalid JS syntax. Install @vitejs/plugin-vue to handle .vue files. file: D:/proj/components/details/Index.vue:205:64 203: onUnmounted(() => { 204: removeCardServiceSubscription(cardServicesSubscription) 205: :", removeCardServiceSubscription(cardServicesSubscription)) ^ 206: });
Line 205 is indeed invalid Javascript
The text was updated successfully, but these errors were encountered:
fixed in V1.0.0, please upgrade the version and use it, thank you.
Sorry, something went wrong.
No branches or pull requests
Bug reported in Nuxt-Security : Baroshem/security#390
Original issue in Nuxt core : nuxt/nuxt#26011
OP had the initial code with
console.log
statement:The plugin transformed the initial code by cutting out the beginning of the
console.log
statement :Line 205 is indeed invalid Javascript
The text was updated successfully, but these errors were encountered: