rage-framework-rpc/webpack.config.js
2018-11-02 01:10:24 -04:00

12 lines
263 B
JavaScript

const path = require('path');
module.exports = {
entry: './src/index.js',
mode: 'production',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'rage-rpc.min.js',
library: 'rpc',
libraryTarget: 'umd'
}
};