5
vue.config.js
is just an exported object. There should be no problem in importing this object in your own code to read the baseUrl:
import { baseUrl } from './vue.config.js'
console.log(baseUrl);
Source:stackexchange.com
5
vue.config.js
is just an exported object. There should be no problem in importing this object in your own code to read the baseUrl:
import { baseUrl } from './vue.config.js'
console.log(baseUrl);