Files
vue-audio-recorder/webpack.dev.js
Gennady Grishkovtsov 95a9700d50 Add existing code
2018-07-26 11:06:48 +03:00

18 lines
347 B
JavaScript

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