Firebase Adapter
Qwik City Firebase Adapter allows you to connect Qwik City to Firebase.
Installation
To integrate the firebase adapter, use the add command:
npm run qwik add firebaseThe adapter will add a new vite.config.ts within the adapters/ directory, and a new entry file will be created, such as:
โโโ adapters/
โโโ firebase
โโโ vite.config.ts
โโโ src/
โโโ entry-firebase.tsxAdditionally, within the package.json, the build.server and serve scripts will be updated.
Production build
To build the application for production, use the build command, this command will automatically run npm run build.server and npm run build.client:
npm run buildDeploy to Firebase
Before deploy you need to setup your Firebase Credentials and add a Firebase project to the repository using these commands.
firebase login
firebase use --add
npm run deployDone!