add background music

This commit is contained in:
2021-07-06 09:04:28 +02:00
parent 838fa50add
commit a501b37e57
6 changed files with 117 additions and 3 deletions

View File

@@ -52,6 +52,16 @@ export default {
},
// Build Configuration: https://go.nuxtjs.dev/config-build
build: {},
build: {
extend(config, ctx) {
config.module.rules.push({
test: /\.(ogg|mp3|wav|mpe?g)$/i,
loader: 'file-loader',
options: {
name: '[path][name].[ext]'
}
})
},
},
}