1
0
mirror of https://github.com/garraflavatra/alphabets.git synced 2025-01-18 13:17:59 +00:00
alphabets/rollup.config.js

16 lines
286 B
JavaScript
Raw Normal View History

2021-05-24 10:32:23 +00:00
import clear from 'rollup-plugin-clear';
import { terser } from "rollup-plugin-terser";
export default {
input: 'src/main.js',
output: {
file: 'dist/bundle.js',
format: 'umd',
name: 'alphabets',
},
plugins: [
terser(),
clear({ targets: ['dist'] }),
],
};