Versions Compared

Key

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

...

A custom stripes configuration is recommended, such as the one shown below for ui-workflow (Be sure to replace URL_TO_OKAPI with the correct URL and the tenant with the correct name).

Code Block
languagejson
module.exports = {
  okapi: { 
    'url': 'URL_TO_OKAPI',
    'tenant':'tamudiku'
  },
  config: {
    logCategories: 'core,path,action,xhr',
    logPrefix: '--',
    maxUnpagedResourceCount: 2000,
    showPerms: false,
    preserveConsole: true,
    suppressIntlErrors: true,
    suppressIntlWarnings: true,
    useSecureTokens: false,
    hasAllPerms: true,
  },
  modules: {
    '@folio/workflow': {},
  }
}

...