Modern.js runtime configuration should be centralized in the src/modern.runtime.ts
file.
If this file doesn't exist in your project yet, create it with the following command:
For multi-entry applications, defineRuntimeConfig
can accept a function that returns specific configurations based on the entry name:
Using the src/modern.runtime.ts
configuration approach does not support exporting asynchronous functions, which is related to the rendering method of Modern.js. If you need to add asynchronous logic, please use the Runtime Plugin.
Using the src/modern.runtime.ts
configuration approach requires Modern.js version 2.66.0 or higher.
Before 2.66.0, runtime configurations were scattered across multiple locations:
runtime
and runtimeByEntries
fields in modern.config.ts
App.config
or the config
function exported from layout
files for each entryTo improve maintainability, Modern.js introduced the unified src/modern.runtime.ts
configuration entry.
We strongly recommend migrating all runtime configurations to src/modern.runtime.ts
. Although the legacy configuration approach is still compatible, it is planned to be gradually deprecated in future versions. A unified configuration entry prevents scattered configurations and significantly improves project maintainability.