UNPKG

pdfjs-vue-print

Version:

Example Vue 3 project using pdf.js to build a simple custom PDF.js viewer and print service.

45 lines (44 loc) 1.11 kB
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "type": "node", "request": "launch", "name": "dev serve", "runtimeExecutable": "npm", "runtimeArgs": [ "--preserve-symlinks", "run-script", "dev" ], "skipFiles": [ "<node_internals>/**" ], "autoAttachChildProcesses": true, "outputCapture": "console" }, { "type": "firefox", "request": "launch", "name": "Firefox developer", "profile": "default", "url": "http://localhost:3000/", "webRoot": "${workspaceFolder}", "pathMappings": [ { "url": "http://localhost:3000/src", "path": "${workspaceFolder}/src" }, { "url": "http://localhost:3000/", "path": "${workspaceFolder}/src/views" } ], "reAttach": true, "timeout": 30000 } ] }