2
0
mirror of https://github.com/therootcompany/acme.js synced 2025-07-03 17:36:31 +00:00
acme.js/webpack.config.js
2019-10-08 04:33:14 -06:00

19 lines
355 B
JavaScript

'use strict';
var path = require('path');
module.exports = {
entry: './lib/acme.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'acme.js',
library: 'acme',
libraryTarget: 'umd',
globalObject: "typeof self !== 'undefined' ? self : this"
},
resolve: {
aliasFields: ['webpack', 'browser'],
mainFields: ['browser']
}
};