Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 269 Bytes

File metadata and controls

16 lines (9 loc) · 269 Bytes

T3Env

  • You can use T3Env to add type safety to your environment variables.
  • Add Environment variables to the src/env.mjs file.
  • Use the environment variables in your code.

Usage

import { env } from "#/env";

console.log(env.VITE_APP_TITLE);