Vue Nuxt 项目中引入音频(mp3等)文件、文档(pdf等)
nuxt项目中直接通过src引入音频、pdf等文件时,项目编译是会报错的,nuxt识别不了这些文件格式,需要在nuxt.config.js中添加相应的loader
build: {
extend (config, { isDev, isClient }) {
if (isDev && isClient) {
config.module.rules.push({ // 配置mp3音频格式loader,否则音频文件无法正常引用
enforce: 'pre',
test: /\.(mp3|pdf)(\?.*)?$/,
loader: 'url-loader',
exclude: /(node_modules)/
})
}
}
}
本文使用 mdnice 排版