UNPKG

piano-mp3

Version:

This is a repo for holding MP3 files for an acoustic piano, sampled directly from this [repo](https://github.com/gleitz/midi-js-soundfonts). These are exposed for use in another repo. The `/example` is a good show of what this repo can/will be used for.

24 lines (22 loc) 399 B
const path = require('path'); module.exports = { entry: [ './src/index', ], output: { path: path.join(__dirname, 'dist'), filename: 'bundle.js', publicPath: '/static/', }, module: { loaders: [{ test: /\.js$/, loaders: ['babel-loader'], include: path.join(__dirname, 'src'), }], }, devServer: { port: 3000, contentBase: '../', }, };