UNPKG

@skhemata/skhemata-faq

Version:

Skhemata FAQ Web Component. This web component provides website FAQ functionality with question and answer style of FAQ.

16 lines (14 loc) 270 B
import resolve from 'rollup-plugin-node-resolve'; import babel from 'rollup-plugin-babel'; export default { input: ['./dist/skhemata-faq.js'], output: { file: './build/index.js', format: 'es', sourcemap: true }, plugins: [ resolve(), babel() ] };