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
I'm working on a project structured with a main repository containing subfolders for different modules (including a Nuxt project as one of them).
When I try to use the jspdf library (version 3.0.1) within the Nuxt project and run the development server using npm run dev, I encounter the following error:
ERROR Unexpected token ':'
at node_modules/jspdf/dist/jspdf.es.min.js:1632:undefined)
at new Script (node:vm:117:7)
at createScript (node:vm:269:10)
at Object.runInThisContext (node:vm:317:10)
at ViteNodeRunner.runModule (node_modules/vite-node/dist/client.mjs:341:17)
at ViteNodeRunner.directRequest (node_modules/vite-node/dist/client.mjs:321:14)
at process.processTicksAndRejections (node:internal/process/task_queues:105:5)
at async ViteNodeRunner.cachedRequest (node_modules/vite-node/dist/client.mjs:168:11)
at async ViteNodeRunner.dependencyRequest (node_modules/vite-node/dist/client.mjs:216:10)
at async pages/index.vue:3:31)
at async ViteNodeRunner.runModule (node_modules/vite-node/dist/client.mjs:342:3)
WARN [Vue Router warn]: uncaught error during route navigation:
ERROR Unexpected token ':'
at node_modules/jspdf/dist/jspdf.es.min.js:1632:undefined:undefined:undefined)
at new Script (node:vm:117:7)
at createScript (node:vm:269:10)
at Object.runInThisContext (node:vm:317:10)
at ViteNodeRunner.runModule (node_modules/vite-node/dist/client.mjs:341:17)
at ViteNodeRunner.directRequest (node_modules/vite-node/dist/client.mjs:321:14)
at process.processTicksAndRejections (node:internal/process/task_queues:105:5)
at async ViteNodeRunner.cachedRequest (node_modules/vite-node/dist/client.mjs:168:11)
at async ViteNodeRunner.dependencyRequest (node_modules/vite-node/dist/client.mjs:216:10)
at async pages/index.vue:3:31)
at async ViteNodeRunner.runModule (node_modules/vite-node/dist/client.mjs:342:3)
WARN [nuxt] Failed to stringify dev server logs. Received DevalueError: Cannot stringify arbitrary non-POJOs. You can define your own reducer/reviver for rich types following the instructions in https://nuxt.com/docs/api/composables/use-nuxt-app#payload.
The error seems to point to an issue within the jspdf minified ES module file (jspdf.es.min.js) when processed by Vite/Nuxt's development server (vite-node).
Here is the code snippet I am using to generate the PDF with jspdf and html2canvas:
Has anyone encountered a similar issue or have any suggestions on how to resolve this Unexpected token ':' error when using jspdf in a Nuxt development environment?
i tried several things, but nothing seemed to work yet.
Thanks!
The text was updated successfully, but these errors were encountered:
Hi all,
I'm working on a project structured with a main repository containing subfolders for different modules (including a Nuxt project as one of them).
When I try to use the
jspdf
library (version 3.0.1) within the Nuxt project and run the development server usingnpm run dev
, I encounter the following error:The error seems to point to an issue within the
jspdf
minified ES module file (jspdf.es.min.js
) when processed by Vite/Nuxt's development server (vite-node
).Here is the code snippet I am using to generate the PDF with
jspdf
andhtml2canvas
:My setup uses:
jspdf
version 3.0.1Has anyone encountered a similar issue or have any suggestions on how to resolve this
Unexpected token ':'
error when usingjspdf
in a Nuxt development environment?i tried several things, but nothing seemed to work yet.
Thanks!
The text was updated successfully, but these errors were encountered: