github.com/machinebox/remoto@v0.1.2-0.20191024144331-eff21a7d321f/console/www/webpack.config.js (about) 1 const path = require('path'); 2 3 const config = { 4 plugins: [ 5 ] 6 } 7 8 module.exports = { 9 entry: { 10 'app': './src/app.js', 11 'editor': './src/editor.js' 12 }, 13 output: { 14 filename: '[name].js', 15 path: path.resolve(__dirname, 'static', 'js') 16 } 17 };