mirror of
https://github.com/betagouv/mon-entreprise
synced 2025-02-09 01:45:03 +00:00
13 lines
369 B
JavaScript
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']
|
|
}
|
|
}
|