Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
initialize({
  handlers: {
    config: () => {
      mergeConfig({ ...custom config overrides }),
    }
  },
  messages: {[
   ...appMessages,
   ...headerMessages,
   ...footerMessages,
   ...paragonMessages,
  }],
});

This will run through a number of lifecycle phases, during which related services will be configured.

...