webpack.config.js 230 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 const path = require('path'); module.exports = { mode: 'production', entry: './src/freehand.js', output: { filename: 'perfect-freehand.js', path: path.resolve(__dirname, '../../src/main/webapp/js/freehand'), }, };