@@ -3,25 +3,25 @@ import { defineConfig } from '@adonisjs/core/app';
3
3
// biome-ignore lint/style/noDefaultExport: This must be a default export
4
4
export default defineConfig ( {
5
5
/*
6
- |--------------------------------------------------------------------------
7
- | Commands
8
- |--------------------------------------------------------------------------
9
- |
10
- | List of ace commands to register from packages. The application commands
11
- | will be scanned automatically from the "./commands" directory.
12
- |
13
- */
6
+ |--------------------------------------------------------------------------
7
+ | Commands
8
+ |--------------------------------------------------------------------------
9
+ |
10
+ | List of ace commands to register from packages. The application commands
11
+ | will be scanned automatically from the "./commands" directory.
12
+ |
13
+ */
14
14
commands : [ ( ) => import ( '@adonisjs/core/commands' ) , ( ) => import ( '@adonisjs/bouncer/commands' ) ] ,
15
15
16
16
/*
17
- |--------------------------------------------------------------------------
18
- | Service providers
19
- |--------------------------------------------------------------------------
20
- |
21
- | List of service providers to import and register when booting the
22
- | application
23
- |
24
- */
17
+ |--------------------------------------------------------------------------
18
+ | Service providers
19
+ |--------------------------------------------------------------------------
20
+ |
21
+ | List of service providers to import and register when booting the
22
+ | application
23
+ |
24
+ */
25
25
providers : [
26
26
( ) => import ( '@adonisjs/core/providers/app_provider' ) ,
27
27
( ) => import ( '@adonisjs/core/providers/hash_provider' ) ,
@@ -34,27 +34,28 @@ export default defineConfig({
34
34
( ) => import ( '@adonisjs/redis/redis_provider' ) ,
35
35
( ) => import ( '@adonisjs/session/session_provider' ) ,
36
36
( ) => import ( '@adonisjs/bouncer/bouncer_provider' ) ,
37
+ ( ) => import ( '@adonisjs/transmit/transmit_provider' ) ,
37
38
] ,
38
39
39
40
/*
40
- |--------------------------------------------------------------------------
41
- | Preloads
42
- |--------------------------------------------------------------------------
43
- |
44
- | List of modules to import before starting the application.
45
- |
46
- */
41
+ |--------------------------------------------------------------------------
42
+ | Preloads
43
+ |--------------------------------------------------------------------------
44
+ |
45
+ | List of modules to import before starting the application.
46
+ |
47
+ */
47
48
preloads : [ ( ) => import ( '#start/routes' ) , ( ) => import ( '#start/kernel' ) ] ,
48
49
49
50
/*
50
- |--------------------------------------------------------------------------
51
- | Tests
52
- |--------------------------------------------------------------------------
53
- |
54
- | List of test suites to organize tests by their type. Feel free to remove
55
- | and add additional suites.
56
- |
57
- */
51
+ |--------------------------------------------------------------------------
52
+ | Tests
53
+ |--------------------------------------------------------------------------
54
+ |
55
+ | List of test suites to organize tests by their type. Feel free to remove
56
+ | and add additional suites.
57
+ |
58
+ */
58
59
tests : {
59
60
suites : [ ] ,
60
61
forceExit : false ,
0 commit comments