We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b40b41 commit 43fa8e2Copy full SHA for 43fa8e2
storage/framework/core/router/src/router.ts
@@ -289,8 +289,8 @@ export class Router implements RouterInterface {
289
290
if (modulePath.includes('storage/framework/orm'))
291
actionModule = await import(modulePath)
292
- else if (modulePath.includes('app/Actions'))
293
- actionModule = await import(modulePath)
+ else if (modulePath.includes('Actions'))
+ actionModule = await import(p.projectPath(`app/${modulePath}.ts`))
294
else if (modulePath.includes('OrmAction'))
295
actionModule = await import(p.storagePath(`/framework/actions/src/${modulePath}.ts`))
296
else actionModule = await import(importPathFunction(modulePath))
0 commit comments