From d8da20026c725344c40622ca73b1ab0330538e9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Chalifour?= Date: Tue, 21 Jul 2020 10:42:58 +0200 Subject: [PATCH] chore(build): update shared Rollup config --- rollup.config.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/rollup.config.js b/rollup.config.js index 05d3f3c9..8ddcbc16 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -1,6 +1,4 @@ -import json from '@rollup/plugin-json'; - -import { sharedPlugins } from '../autocomplete-core/rollup.config'; +import { plugins } from '../../rollup.base.config'; export default { input: 'src/index.ts', @@ -10,5 +8,5 @@ export default { sourcemap: true, name: 'docsearch', }, - plugins: [json(), ...sharedPlugins], + plugins, };