* Include core AdonisJS providers when booting the application. * This adds essential providers like app, hash, and REPL providers. * * @example * ```ts * const ignitor = new IgnitorFactory() * .withCoreProviders() * .create(appRoot) * ```
()
| 132 | * ``` |
| 133 | */ |
| 134 | withCoreProviders(): this { |
| 135 | this.#loadCoreProviders = true |
| 136 | return this |
| 137 | } |
| 138 | |
| 139 | /** |
| 140 | * Merge default configuration for core AdonisJS features. |