Skip to content

v5.3.2

Compare
Choose a tag to compare
@metonym metonym released this 17 Mar 03:05
· 325 commits to master since this release

Documentation

  • specify in docs that vite should optimize both "highlight.js" and "highlight.js/lib/core" if using SvelteKit or vite
# svelte.config.js
export default {
  kit: {
+   vite: {
+     optimizeDeps: {
+       include: ["highlight.js", "highlight.js/lib/core"],
+     },
+   },
  },
};