kino/rollup.config.js

17 строки
246 B
JavaScript

export default [
{
input: 'src/index.js',
output: {
file: 'public/dist/js/index.js',
format: 'cjs',
},
},
{
input: 'src/js/sw/sw.js',
output: {
file: 'public/sw.js',
format: 'cjs',
},
},
];