From a7a517733eb8e2b76f8aba6cc136285bf7962801 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Thu, 7 Apr 2022 21:06:18 +0200 Subject: [PATCH] web: enable rollup cache Signed-off-by: Jens Langhammer --- web/rollup.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web/rollup.config.js b/web/rollup.config.js index 9d34c0f1b..388b54a6a 100644 --- a/web/rollup.config.js +++ b/web/rollup.config.js @@ -99,6 +99,7 @@ export const POLY = { sourcemap: true, }, ], + cache: true, plugins: [ cssimport(), nodeResolve({ browser: true }), @@ -120,6 +121,7 @@ export default [ { input: "./src/interfaces/FlowInterface.ts", context: "window", + cache: true, output: [ { format: "es", @@ -137,6 +139,7 @@ export default [ { input: "./src/interfaces/AdminInterface.ts", context: "window", + cache: true, output: [ { format: "es", @@ -154,6 +157,7 @@ export default [ { input: "./src/interfaces/UserInterface.ts", context: "window", + cache: true, output: [ { format: "es",