PluralKit/dashboard/vite.config.js

27 lines
759 B
JavaScript
Raw Normal View History

2021-12-12 11:56:26 +00:00
import resolve from 'path';
2021-12-09 11:53:54 +00:00
import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [svelte()],
2021-12-12 11:05:24 +00:00
optimizeDeps: { exclude: ["svelte-navigator"] },
2021-12-12 11:56:26 +00:00
build: {
outDir: "dist",
sourcemap: true,
rollupOptions: {
manualChunks(filename) {
filename = filename.split("node_modules");
if (filename.length < 2) return 'index';
else filename = filename[1];
// this is really big and makes the map size go over the sentry file cache limit
if (filename.includes("highlight.js")) return 'vendor-0';
return 'vendor-1';
// return `vendor-${filename.charCodeAt(1) % 2}`;
}
}
2021-12-12 11:05:24 +00:00
}
2021-12-09 11:53:54 +00:00
})