mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
25 lines
1.1 KiB
TypeScript
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}`;
|
|
|