angular/adev/prerender/tutorials/utils/web-constants.ts
Joey Perrott cebe2db5fa refactor(docs-infra): refactor adev to build using architect (#53497)
Refactor adev as needed to build using architect.

PR Close #53497
2023-12-11 19:21:07 +00:00

25 lines
1.1 KiB
TypeScript

/*!
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
export const TUTORIALS_ASSETS_WEB_PATH = '/assets/tutorials';
export const TUTORIALS_DIST_PATH = 'tutorials';
export const TUTORIALS_PLAYGROUND_DIRECTORY = 'playground';
/** the playground template that loads by default when entering the /playground page */
export const DEFAULT_PLAYGROUND_TEMPLATE = '0-minigame';
export const STARTER_PLAYGROUND_TEMPLATE = '3-hello-world';
export const TUTORIALS_HOMEPAGE_DIRECTORY = 'homepage';
export const TUTORIALS_COMMON_DIRECTORY = 'common';
export const TUTORIALS_ASSETS_SOURCE_CODE_DIRECTORY = 'source-code';
export const TUTORIALS_ASSETS_METADATA_DIRECTORY = 'metadata';
export const TUTORIALS_ASSETS_ROUTES_DIRECTORY = 'routes';
export const TUTORIALS_SOURCE_CODE_WEB_PATH = `${TUTORIALS_ASSETS_WEB_PATH}/${TUTORIALS_ASSETS_SOURCE_CODE_DIRECTORY}`;
export const TUTORIALS_METADATA_WEB_PATH = `${TUTORIALS_ASSETS_WEB_PATH}/${TUTORIALS_ASSETS_METADATA_DIRECTORY}`;