mirror of
https://github.com/Fluffy-Bean/TastyBites.git
synced 2024-12-28 18:36:25 +00:00
12 lines
354 B
JavaScript
12 lines
354 B
JavaScript
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'
|
|
import { phosphorSvelteOptimize } from "phosphor-svelte/preprocessor"
|
|
|
|
export default {
|
|
// Consult https://svelte.dev/docs#compile-time-svelte-preprocess
|
|
// for more information about preprocessors
|
|
preprocess: [
|
|
phosphorSvelteOptimize(),
|
|
vitePreprocess()
|
|
],
|
|
}
|