Mirror: The small sibling of the graphql package, slimmed down for client-side libraries.
1import { defineConfig } from 'vite'; 2import preact from "@preact/preset-vite"; 3 4export default defineConfig({ 5 plugins: [preact()], 6 build: { 7 outDir: './dist-graphql' 8 } 9});