Files
vue-audio-recorder/webpack.dev.js
2018-10-05 22:51:20 +03:00

17 lines
316 B
JavaScript

const path = require('path')
const HtmlWebpackPlugin = require('html-webpack-plugin')
module.exports = {
entry: './demo/index.js',
output: {
path: path.resolve(__dirname, './demo')
},
plugins: [
new HtmlWebpackPlugin({
filename: 'index.html',
template: './demo/index.html'
})
]
}