r3-v2/webpack.config.js

10 lines
153 B
JavaScript
Raw Normal View History

2020-02-27 15:24:35 +01:00
const path = require('path');
module.exports = {
entry: './src/index.js',
output: {
filename: 'r3.js',
path: path.resolve(__dirname, 'dist')
}
}