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 7f95ac7 commit 891c38aCopy full SHA for 891c38a
src/add-ons.ts
@@ -86,6 +86,10 @@ export async function getAllAddOns(
86
new URL(`../templates/${framework}/${type}`, import.meta.url),
87
)
88
89
+ if (!existsSync(addOnsBase)) {
90
+ continue
91
+ }
92
+
93
for (const dir of await readdirSync(addOnsBase).filter((file) =>
94
isDirectory(resolve(addOnsBase, file)),
95
)) {
0 commit comments