2020-07-17 08:03:38 +00:00
|
|
|
import 'dotenv/config';
|
2020-07-18 02:15:29 +00:00
|
|
|
import buble from '@rollup/plugin-buble';
|
2020-07-25 00:00:56 +00:00
|
|
|
import resolve from '@rollup/plugin-node-resolve';
|
2020-07-18 02:15:29 +00:00
|
|
|
import { terser } from 'rollup-plugin-terser';
|
2020-07-17 08:03:38 +00:00
|
|
|
|
|
|
|
|
export default {
|
2020-07-24 05:07:57 +00:00
|
|
|
input: 'tracker/index.js',
|
2020-07-17 08:03:38 +00:00
|
|
|
output: {
|
2022-02-19 04:00:21 +00:00
|
|
|
file: 'public/umami.js',
|
2020-07-17 08:03:38 +00:00
|
|
|
format: 'iife',
|
|
|
|
|
},
|
2020-09-30 22:14:44 +00:00
|
|
|
plugins: [resolve(), buble({ objectAssign: true }), terser({ compress: { evaluate: false } })],
|
2020-07-17 08:03:38 +00:00
|
|
|
};
|