14 lines
305 B
JavaScript
14 lines
305 B
JavaScript
import json from '@rollup/plugin-json';
|
|
|
|
import { sharedPlugins } from '../autocomplete-core/rollup.config';
|
|
|
|
export default {
|
|
input: 'src/index.ts',
|
|
output: {
|
|
file: 'dist/umd/index.js',
|
|
format: 'umd',
|
|
sourcemap: true,
|
|
name: 'docsearch',
|
|
},
|
|
plugins: [json(), ...sharedPlugins],
|
|
};
|