TeXmeijin / vite-react-ts-tailwind-firebase-starter

Starter using Vite + React + TypeScript + Tailwind CSS. And already set up Firebase(v9), Prettier and ESLint.
https://vite-react-ts-tailwind-starter.vercel.app
274 stars 57 forks source link

Service Name = ? #571

Open AndroidDoctorr opened 12 months ago

AndroidDoctorr commented 12 months ago

In the .env.local file - what does the "service name" refer to? Does that refer to the app name, or something else? I don't see anything explicitly referred to as "service name" in the firebase console

Thank you!

JSmurf commented 10 months ago

It is the app name. The Head.tsx file uses it for the page title:

const SERVICE_NAME = import.meta.env.VITE_SERVICE_NAME
{...}
    <title>{`${title} | ${SERVICE_NAME}`}</title>