import react from '@vitejs/plugin-react'; import { fileURLToPath } from 'node:url'; import { defineConfig } from 'vite'; export default defineConfig({ plugins: [react()], resolve: { alias: { // Use library sources directly for instant HMR while developing. dreamknob: fileURLToPath(new URL('../../packages/dreamknob/src/index.ts', import.meta.url)), }, }, });