mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
d72c82220f
* first pass * fix failing test * Update changeset to fix SWC compiler issue Fix bug where the SWC compiler bug prunes step-only imports in the client-mode transformation Signed-off-by: Nathan Rajlich <n@n8.io> * DCO Remediation Commit for nathancolosimo <nathancolosimo@gmail.com> I, nathancolosimo <nathancolosimo@gmail.com>, hereby add my Signed-off-by to this commit:150d175e7dI, nathancolosimo <nathancolosimo@gmail.com>, hereby add my Signed-off-by to this commit:429747fcc3Signed-off-by: nathancolosimo <nathancolosimo@gmail.com> --------- Signed-off-by: Nathan Rajlich <n@n8.io> Signed-off-by: nathancolosimo <nathancolosimo@gmail.com> Co-authored-by: Nathan Rajlich <n@n8.io>
10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
import { fileURLToPath } from 'node:url';
|
|
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: 'latest',
|
|
modules: ['workflow/nuxt'],
|
|
alias: {
|
|
'@repo': fileURLToPath(new URL('../../', import.meta.url)),
|
|
},
|
|
});
|