silgi 0.36.13 → 0.36.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/build.mjs +1 -1
- package/dist/cli/index.mjs +1 -1
- package/package.json +1 -1
package/dist/cli/build.mjs
CHANGED
|
@@ -268,7 +268,7 @@ async function nextJS(silgi, skip = false) {
|
|
|
268
268
|
}
|
|
269
269
|
}
|
|
270
270
|
for (const prefix of routerPrefixs) {
|
|
271
|
-
const file =
|
|
271
|
+
const file = join(silgi2.options.srcDir, "app", prefix, "[...all]", "route.ts");
|
|
272
272
|
const fileExists = existsSync(file);
|
|
273
273
|
if (!fileExists) {
|
|
274
274
|
const serverDirName = `@/${silgi2.options.silgi.serverDir.split("/src/")[1]}/core`;
|
package/dist/cli/index.mjs
CHANGED