feat: gestion-utilisateur #1

Merged
Clement merged 37 commits from feat/gestion-utilisateur into master 2024-05-20 10:48:35 +00:00
Showing only changes of commit cd234f5b37 - Show all commits

13
front/src/env.d.ts vendored
View File

@ -1,22 +1,11 @@
/// <reference path="../.astro/types.d.ts" />
/// <reference types="astro/client" />
export interface ImportMetaEnv { export interface ImportMetaEnv {
NODE_ENV: string NODE_ENV: string
APP_URL: string APP_URL: string
POCKETBASEURL: string POCKETBASE_URL: string
} }
interface ImportMeta { interface ImportMeta {
readonly env: ImportMetaEnv readonly env: ImportMetaEnv
} }
declare namespace App {
/**
* Middlewares variables
*/
interface Locals {}
}