mirror of
https://github.com/LukeHagar/OpenAPI.gg.git
synced 2025-12-06 04:20:29 +00:00
* add package manager field to package json * Remove TODO * design rework and path basics * update packagemanager * remove package manager
9 lines
289 B
TypeScript
9 lines
289 B
TypeScript
import { purgeCss } from 'vite-plugin-tailwind-purgecss';
|
|
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vite';
|
|
import { enhancedImages } from '@sveltejs/enhanced-img';
|
|
|
|
export default defineConfig({
|
|
plugins: [enhancedImages(), sveltekit(), purgeCss()]
|
|
});
|