mirror of
https://github.com/garraflavatra/alphabets.git
synced 2024-11-22 10:27:36 +01:00
16 lines
286 B
JavaScript
16 lines
286 B
JavaScript
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'] }),
|
|
],
|
|
};
|