I am looking to set up a basic Vue3 project using the latest @vue/cli and debug it with VS Code or Chrome. Here is the command I used to create the project:
vue create testApp
Vue CLI v5.0.8
? Please pick a preset: Default ([Vue 3] babel, eslint)
I noticed that the page on the Vue website seems outdated here. It suggests using the "Debugger for Chrome" extension in VS Code which is now deprecated here. Additionally, there are differences in the vue.config.js file.
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true
})
Components in Chrome do not allow debugging https://i.sstatic.net/82LPgCKT.png. Do you have any tips on how to currently debug a Vue3 app generated by @vue/cli 5?