2
0
mirror of https://github.com/therootcompany/acme.js synced 2025-04-20 06:30:40 +00:00
acme.js/webpack.config.js
2019-10-08 14:50:53 -06:00

21 lines
422 B
JavaScript

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