I have a webpack config using laravel with vue, I am transforming it to vue spa app using vue-cli-3. But I am not able to understand how I can change mix config to vue.config.js. This is my webpack.mix.js config.
resolve: {
modules: [
'node_modules',
path.resolve(__dirname, 'resources/assets/js'),
path.resolve(__dirname, 'resources/assets/svg')
]
}
I want to resolve this in vue.config.js. How can I do it? Any recommendation?