blob: 48d350edfc8cf2bc7455671838341bf4e4d04303 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
const path = require('path')
module.exports = [
{
mode: 'production',
entry: './dist/player.js',
output: {
filename: 'player.min.js',
path: path.resolve(__dirname, 'build')
}
}
]
|