The @epilot360/core-ui package is running in "integrated" mode, since standalone capabilities are not enabled by default in this setup. This means that it does not work as a standalone application without being loaded by a single-spa root config.
To develop this package, try the following steps:
http://localhost:3000/bundle.jslocalStorage.setItem('devtools', true); Refresh the page.@epilot360/core-ui (or the name your root config uses for this module) and click on it. If it is not present, click on Add New Module.http://localhost:3000/bundle.js) into the input that appears. Refresh the page.Congrats, your local code is now being used by the root application!
For further information about using import map overrides for local development, see the following links:
Running this package truly "standalone" (rendering itself directly to the DOM without a root config) would require additional setup, potentially including a dedicated standalone entry point (e.g., src/index.standalone.ts) and modifications to the build configuration (like using standalone-single-spa-webpack-plugin if using Webpack, or equivalent logic for Rollup).