1
0
mirror of https://github.com/falk-werner/webfuse-js synced 2024-10-27 20:44:08 +00:00
falk-werner_webfuse-js/webpack.config.js
2020-04-10 13:21:55 +02:00

11 lines
206 B
JavaScript

const path = require('path');
module.exports = {
mode: 'production',
entry: './src/index.js',
output: {
filename: 'webufse.js',
path: path.resolve(__dirname, './dist')
}
};