mirror of
https://github.com/kevin-DL/vue-audio-recorder.git
synced 2026-01-11 19:04:28 +00:00
17 lines
316 B
JavaScript
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'
|
|
})
|
|
]
|
|
}
|
|
|