hedera-web/webpack.config.js

13 lines
150 B
JavaScript

var webpack = require ('webpack');
module.exports =
{
entry: './app.js',
output: {
path: __dirname,
filename: 'hedera-web.js'
}
};