aboutsummaryrefslogtreecommitdiffstats
path: root/start/env.ts
diff options
context:
space:
mode:
Diffstat (limited to 'start/env.ts')
-rw-r--r--start/env.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/start/env.ts b/start/env.ts
index 3e1702e..c51a472 100644
--- a/start/env.ts
+++ b/start/env.ts
@@ -11,7 +11,7 @@
11| and hence do not rename or move this file to a different location. 11| and hence do not rename or move this file to a different location.
12| 12|
13*/ 13*/
14import { Env } from '@adonisjs/core/env' 14import { Env } from '@adonisjs/core/env';
15 15
16export default await Env.create(new URL('../', import.meta.url), { 16export default await Env.create(new URL('../', import.meta.url), {
17 HOST: Env.schema.string({ format: 'host' }), 17 HOST: Env.schema.string({ format: 'host' }),
@@ -21,4 +21,4 @@ export default await Env.create(new URL('../', import.meta.url), {
21 APP_NAME: Env.schema.string(), 21 APP_NAME: Env.schema.string(),
22 22
23 NODE_ENV: Env.schema.enum(['development', 'production', 'test'] as const), 23 NODE_ENV: Env.schema.enum(['development', 'production', 'test'] as const),
24}) 24});