「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
. しかし、アプリをライブラリに結び付ける方法がわかりません。これが私のプロジェクト構造の外観です。
提案や指針はありますか?