forked from didirus/AstralRinth
17 lines
353 B
JavaScript
17 lines
353 B
JavaScript
import sveltePreprocess from 'svelte-preprocess';
|
|
import Icons from 'unplugin-icons/vite';
|
|
import svelteSvg from '@poppanator/sveltekit-svg';
|
|
|
|
export const preprocess = sveltePreprocess({
|
|
postcss: true,
|
|
});
|
|
|
|
export const plugins = [
|
|
svelteSvg(),
|
|
Icons({
|
|
compiler: 'svelte',
|
|
defaultClass: 'icon',
|
|
scale: 1,
|
|
}),
|
|
];
|