blob: 71b711614944d5fde9c3aa311fe6930a59ad0d34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
const path = require('path');
module.exports = {
entry: './src/index.js',
// mode: 'development',
mode: 'production',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'gpgmejs.bundle.js',
libraryTarget: 'var',
library: 'Gpgmejs'
}
};
|