1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-09 01:45:03 +00:00
mon-entreprise/source/webpack.prod.js
2018-08-04 11:59:15 +02:00

13 lines
369 B
JavaScript

const common = require('./webpack.common.js')
module.exports = {
...common,
mode: 'production',
entry: {
bundle: ['@babel/polyfill', 'whatwg-fetch', './source/entry.js'],
// le nom "simulateur" est là pour des raisons historiques
//
simulateur: './source/iframe-script.js',
'colour-chooser': ['@babel/polyfill', './source/entry-colour-chooser.js']
}
}