From fe4b4fdf7cbbf27ab96b4618ab0d3f39b02a04ce Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Wed, 13 Sep 2023 15:14:25 -0500 Subject: Initial commit Get the skeleton (hehe) started --- app/vite.config.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 app/vite.config.ts (limited to 'app/vite.config.ts') diff --git a/app/vite.config.ts b/app/vite.config.ts new file mode 100644 index 0000000..eefe408 --- /dev/null +++ b/app/vite.config.ts @@ -0,0 +1,7 @@ +import { purgeCss } from 'vite-plugin-tailwind-purgecss'; +import { sveltekit } from '@sveltejs/kit/vite'; +import { defineConfig } from 'vite'; + +export default defineConfig({ + plugins: [sveltekit(), purgeCss()] +}); -- cgit v1.2.3