Skip to content

Commit ba11065

Browse files
committed
fix(nitro): use src dir
1 parent 178825f commit ba11065

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/nitro/src/builders.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export function getWorkflowDirs(nitro: Nitro) {
8787
return unique(
8888
[
8989
...(nitro.options.workflow?.dirs ?? []),
90-
join(nitro.options.rootDir, 'workflows'),
90+
join(srcDir, 'workflows'),
9191
join(srcDir, nitro.options.routesDir || 'routes'),
9292
join(srcDir, nitro.options.apiDir || 'api'),
9393
].map((dir) => resolve(nitro.options.rootDir, dir))

0 commit comments

Comments
 (0)