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 488997c commit d2af895Copy full SHA for d2af895
storage/framework/core/src/path/src/index.ts
@@ -207,6 +207,10 @@ export function langPath(path?: string) {
207
return projectPath(`lang/${path || ''}`)
208
}
209
210
+export function layoutsPath(path?: string) {
211
+ return resourcesPath(`layouts/${path || ''}`)
212
+}
213
+
214
export type LibraryType = 'vue-components' | 'web-components' | 'functions'
215
export function libraryEntryPath(type: LibraryType) {
216
return libsEntriesPath(`${type}.ts`)
@@ -462,6 +466,7 @@ export const path = {
462
466
functionsPath,
463
467
gitPath,
464
468
langPath,
469
+ layoutsPath,
465
470
libsPath,
471
libraryEntryPath,
472
lintPath,
0 commit comments