view demo/rollup.config.js @ 81:099b62d6d0b3

new demo that's a standalone project
author drewp@bigasterisk.com
date Wed, 17 Nov 2021 15:36:41 -0800
parents
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',
};