6

「page-not-found」、「error」、「unauthorized」などのルートを処理する Angular 6 アプリがあります。

これは私のルートがどのように見えるかです:

const appRoutes: Routes = [
  { path:'page-not-found', component: NotFoundPageComponent },
  { path: 'unauthorized', component: UnAuthorizedPageComponent },
  { path: 'error', component: ErrorPageComponent },
  { path: '**', component: NotFoundPageComponent },
  ];

すべてのコンポーネントには、以下のような単純な html テンプレートがあります。

 <p>Page Not Found. Please report this error to system administrator </p>
 <p>Unauthorized. Please report this error to system administrator</p>
 <p>Error. Please report this error to system administrator</p>

これらのルートを複数のアプリケーションで使用しng serveたいので、これを多くのアプリケーションでインポートできるモジュールまたはライブラリに変換しようとしています。

import { NotFoundPageComponent } from 'routing-lib';

私の元のアプリケーションでは、ng g library routing-lib. しかし、アプリをライブラリに結び付ける方法がわかりません。これが私のプロジェクト構造の外観です。

ここに画像の説明を入力

提案や指針はありますか?

4

2 に答える 2