import { defineConfig } from 'vite'; import path from 'path'; export default defineConfig({ resolve: { alias: { // Use the local repo runtime sources instead of the published package '@wailsio/runtime': path.resolve(__dirname, '../../../internal/runtime/desktop/@wailsio/runtime/src/index.ts'), }, }, });