const path = require('path') const CopyPlugin = require('copy-webpack-plugin') module.exports = { entry: { main: './src/index.js', player: './src/player.js' }, output: { path: path.resolve(__dirname, 'dist'), filename: '[name].bundle.js' }, module: { rules: [] }, plugins: [ new CopyPlugin({ patterns: [{ from: '*', to: 'css', context: 'src/css/' }, { from: 'node_modules/bootstrap/dist/css/bootstrap.min.css', to: 'css' }] }) ] }