From 88b336da85103722308a9de2f3b2cafc479500d9 Mon Sep 17 00:00:00 2001
From: Christoph Reiter <reiter.christoph@gmail.com>
Date: Thu, 16 Apr 2020 10:51:58 +0200
Subject: [PATCH] Disable chunking for app-shell

It breaks bundling somehow.
---
 rollup.config.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/rollup.config.js b/rollup.config.js
index d7e0f2a..be1f6d0 100644
--- a/rollup.config.js
+++ b/rollup.config.js
@@ -82,7 +82,8 @@ switch (build) {
 
 const CHUNK_BLACKLIST = [
   'jszip',  // jszip is a node module by default and rollup chunking is confused by that and emits warnings
-  'source-sans-pro'
+  'source-sans-pro',
+  'vpu-app-shell',  // XXX: this breaks rollup bundling, no idea why for now
 ];
 
 /**
-- 
GitLab