Как добавить несколько input и output конфигурационных файлов в rollup.config.js.
Там где export default добавляем массив [{.
Итоговый вариант будет таким:
export default [
{
input : 'js/app.js',
output: {
sourcemap: true,
file : 'public/build/app.js'
},
},
{
input : 'js/global.js',
output: {
sourcemap: true,
file : 'public/build/global.js'
}
}
]
{
input : 'js/app.js',
output: {
sourcemap: true,
file : 'public/build/app.js'
},
},
{
input : 'js/global.js',
output: {
sourcemap: true,
file : 'public/build/global.js'
}
}
]