Skip to content

Instantly share code, notes, and snippets.

View cxj's full-sized avatar
📡
beep beep

Chris Johnson cxj

📡
beep beep
View GitHub Profile
@cxj
cxj / js
Created September 14, 2020 21:10
Modified Svelte rollup.config.js for MSIE11 support via Bublé (https://github.com/bublejs/buble), updated for latest versions
import svelte from 'rollup-plugin-svelte';
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import livereload from 'rollup-plugin-livereload';
import {terser} from 'rollup-plugin-terser';
// added by angelo
import buble from '@rollup/plugin-buble';
const production = !process.env.ROLLUP_WATCH;