Lines Matching refs:basePath
32 basePath: string;
107 { outputDir, basePath, exportServer, minify, includeMaps }: Options
112 const injectFaviconTag = await getVirtualFaviconAssetsAsync(projectRoot, { outputDir, basePath });
139 basePath,
222 function traverseScreens(screens: string | { screens: any; path: string }, basePath = '') {
225 let filePath = basePath + value;
228 basePath === ''
230 : basePath.endsWith('/')
231 ? basePath + 'index'
232 : basePath.slice(0, -1);
241 const newPath = basePath + value.path + '/';