From f0e5aaded44c7f7ddd88c5bb40206986754d910c Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Thu, 14 Sep 2023 19:04:07 -0500 Subject: [PATCH] vite: disable inline assets so CSP will pass --- vite.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/vite.config.ts b/vite.config.ts index 174822c6ce..d13a71d881 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -13,6 +13,7 @@ export default defineConfig({ // Relative to the root outDir: '../static', assetsDir: 'packs', + assetsInlineLimit: 0, }, server: { port: 3036,