[Vuejs]-In my Vue 3 app, all the Typescript files turn out to be accessible from the browser console

0👍

The solution was to create the file vue.config.js in the root folder and add the following:

module.exports = {
  productionSourceMap: process.env.NODE_ENV !== 'production'
}

Leave a comment