面板架構

面板於 webpack-exposes.config.js 為獨立進入點,每一個面板可指定至獨立的 standalone component,所以檔案可放置於任意位置。

webpack-exposes.config.js
const exposes = {
  web: {
    // Web 端面板
    './Panel/Admin': './src/app/web/panels/admin/hello-world/hello-world.component.ts',
    './Panel/User': './src/app/web/panels/user/hello-world/hello-world.component.ts',
  }
};