initial commit of a basic working audio player

This commit is contained in:
2022-01-07 10:07:15 -07:00
parent 71e22ae4b0
commit 6ad71a68f3
41 changed files with 37889 additions and 0 deletions

9
webpack.config.js Normal file
View File

@@ -0,0 +1,9 @@
const path = require('path');
module.exports = {
resolve: {
alias: {
'@': path.resolve('resources/js'),
},
},
};