No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search

    dev/build in VS Code IDE

    Help
    2
    3
    999
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • T
      terry last edited by

      I would like to fire “quasar dev” or “quasar build” in VS Code as before( 0.14.7 <) with “launch.json” as below

      "configurations": [
      	{
      		"type": "node",
      		"request": "launch",
      		"name": "Launch Program",
      		"program": "${workspaceRoot}/build/script.dev.js"
      	}
      ] 
      

      from the 0.15.x, I lost the stat point with VS Code.
      I hope to get workaround. Thnaks

      1 Reply Last reply Reply Quote 0
      • a47ae
        a47ae last edited by

        As “program” just enter the path to Quasar CLI. On Linux and Mac you can find that path with which quasar

        1 Reply Last reply Reply Quote 0
        • T
          terry last edited by

          Thanks @a47ae, as you comment, I edit as below, it works as I expected. Thanks again.

          {
          “type”: “node”,
          “request”: “launch”,
          “name”: “Launch Program”,
          “program”: “/usr/local/bin/quasar”,
          “args”: [“dev”]
          },

          1 Reply Last reply Reply Quote 0
          • First post
            Last post