Mercurial > code > home > repos > streamed-graph
view demo/rollup.config.js @ 86:6ec759f9009f
build fixes, dead code, format
author | drewp@bigasterisk.com |
---|---|
date | Thu, 25 Nov 2021 18:15:08 -0800 |
parents | 099b62d6d0b3 |
children |
line wrap: on
line source
import html from '@web/rollup-plugin-html'; import resolve from '@rollup/plugin-node-resolve'; import summary from 'rollup-plugin-summary'; export default { plugins: [ html({ input: 'index.html', }), resolve(), summary(), ], output: { dir: 'build', }, preserveEntrySignatures: 'strict', };