mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
0f557d5ae4
* Statically inject workflow world target * Fix static world injection in host bundles * Fix static world injection gaps * Fix Vite Nitro server startup * Fix Nitro pg-native aliasing * Fix static world target CI gaps * Fix static world dev rebuild gaps * Avoid broad runtime alias in Nitro * Refresh Next dev route for step HMR * Externalize Nest target world * Use canary HMR rediscovery timeout * Bundle local world in Nest builds * Dedupe world target helpers and fix SvelteKit chunk patch guard
19 lines
394 B
TypeScript
19 lines
394 B
TypeScript
import { fileURLToPath } from 'node:url';
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
'@workflow/core/runtime/world-target': fileURLToPath(
|
|
new URL('./packages/world-local/src/index.ts', import.meta.url)
|
|
),
|
|
},
|
|
},
|
|
test: {
|
|
testTimeout: 60_000,
|
|
},
|
|
benchmark: {
|
|
include: ['**/*.bench.ts'],
|
|
},
|
|
});
|