icytv/webpack.config.js

30 lines
540 B
JavaScript
Raw Normal View History

const path = require('path')
const CopyPlugin = require('copy-webpack-plugin')
2018-08-06 13:16:24 +00:00
module.exports = {
entry: {
main: './src/index.js',
player: './src/player.js'
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].bundle.js'
},
module: {
rules: []
},
plugins: [
2020-05-28 19:06:09 +00:00
new CopyPlugin({
patterns: [{
from: '*',
to: 'css',
context: 'src/css/'
2018-08-06 13:16:24 +00:00
},
{
from: 'node_modules/bootstrap/dist/css/bootstrap.min.css',
2021-02-13 18:31:32 +00:00
to: 'css'
2020-05-28 19:06:09 +00:00
}]
})
]
}