mirror of
https://github.com/BradNut/personal-website-sveltekit
synced 2025-09-08 23:20:18 +00:00
12 lines
286 B
TypeScript
12 lines
286 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import type { UserConfig } from 'vite';
|
|
import { imagetools } from 'vite-imagetools';
|
|
|
|
const config: UserConfig = {
|
|
plugins: [imagetools(), sveltekit()],
|
|
test: {
|
|
include: ['src/**/*.{test,spec}.{js,ts}']
|
|
}
|
|
};
|
|
|
|
export default config;
|