Mercurial > code > home > repos > streamed-graph
view demo/rollup.config.js @ 88:ac7ad087d474
graph view rewrites and fixes for the multi-subject table
author | drewp@bigasterisk.com |
---|---|
date | Tue, 30 Nov 2021 00:14:37 -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', };