federation/gateway/node_modules/subscriptions-transport-ws/unpkg-webpack.config.js
2020-11-14 16:43:58 +01:00

11 lines
244 B
JavaScript

var path = require('path');
module.exports = {
context: path.join(__dirname, '/dist'),
entry: './client.js',
output: {
path: path.join(__dirname, '/browser'),
filename: 'client.js',
library: 'SubscriptionsTransportWs'
}
};