Fix: production builds break Icon component when SVGs are loaded as inline code. Adjusted vite.config.js. Updated the Node.js version in Dockerfile

This commit is contained in:
2024-08-17 20:45:19 +03:00
parent 0550f9e6dd
commit 03706b785a
2 changed files with 8 additions and 3 deletions

View File

@@ -2,5 +2,10 @@ import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
build: {
assetsInlineLimit: (file) => {
return !file.endsWith('.svg');
}
},
plugins: [sveltekit()]
});
});