0👍
You should apply the rule to your webpack.config.js in order handle audio files by webpack
module: {
rules: [
{
test: /\.mp3$/,
loader: 'file-loader',
exclude: /node_modules(?!\/foundation-sites)|bower_components/,
options: {
name: '[path][name].[ext]'
}
}
]
}
- [Vuejs]-Trigering methods in nested VUE 3 components
- [Vuejs]-How to work with Laravel and Vue to develop a system
Source:stackexchange.com