summaryrefslogtreecommitdiffstats
path: root/rollup.config.js
blob: 18629231f6f8dcb7f1f5be731d1ec02749ef792f (plain)
1
2
3
4
5
6
7
8
9
export default {
  input: 'src/svg.js',
  output: {
    file: 'dist/svg.js',
    name: 'SVG',
    sourceMap: true,
    format: 'iife'
  }
}