mirror of
https://github.com/pockethost/pockethost.git
synced 2025-03-30 15:08:30 +00:00
12 lines
246 B
TypeScript
12 lines
246 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite'
|
|
import type { UserConfig } from 'vite'
|
|
|
|
const config: UserConfig = {
|
|
plugins: [sveltekit()],
|
|
optimizeDeps: {
|
|
include: ['highlight.js', 'highlight.js/lib/core'],
|
|
},
|
|
}
|
|
|
|
export default config
|