2020-07-18 04:15:29 +02:00
|
|
|
import buble from '@rollup/plugin-buble';
|
|
|
|
import { terser } from 'rollup-plugin-terser';
|
2020-07-17 10:03:38 +02:00
|
|
|
|
|
|
|
export default {
|
2020-07-24 07:07:57 +02:00
|
|
|
input: 'tracker/index.js',
|
2020-07-17 10:03:38 +02:00
|
|
|
output: {
|
2022-02-19 05:00:21 +01:00
|
|
|
file: 'public/umami.js',
|
2020-07-17 10:03:38 +02:00
|
|
|
format: 'iife',
|
|
|
|
},
|
2022-03-02 21:10:47 +01:00
|
|
|
plugins: [buble({ objectAssign: true }), terser({ compress: { evaluate: false } })],
|
2020-07-17 10:03:38 +02:00
|
|
|
};
|