diff --git a/static/js/.gitignore b/static/js/.gitignore new file mode 100644 index 0000000..98e2724 --- /dev/null +++ b/static/js/.gitignore @@ -0,0 +1,2 @@ +bundle.js +bundle.js.map diff --git a/static/js/rollup.config.js b/static/js/rollup.config.js new file mode 100644 index 0000000..6ece635 --- /dev/null +++ b/static/js/rollup.config.js @@ -0,0 +1,10 @@ + +module.exports = { + input: 'main.js', + output: { + file :'bundle.js', + format: 'umd', + sourcemap: true, + compact: true + } +};