mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
8 lines
217 B
TypeScript
8 lines
217 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vite';
|
|
import { workflowPlugin } from 'workflow/sveltekit';
|
|
|
|
export default defineConfig({
|
|
plugins: [workflowPlugin(), sveltekit()],
|
|
});
|