Is there a process to deploy to Firebase hosting with Radzen? I have tried but failed to succeed with the "firebase-init" command in the "Client" directory. Is there any other way to do this?
Thank you for your help.
Levent
Is there a process to deploy to Firebase hosting with Radzen? I have tried but failed to succeed with the "firebase-init" command in the "Client" directory. Is there any other way to do this?
Thank you for your help.
Levent
Hi @Narrowbody,
I followed these steps to deploy this Radzen application (without a server-side project) to Firebase.
client
directory.npm install
to install all dependencies.firebase init
and picked Hosting
and specified dist
as the public directory. Basically followed this Firebase and Angular tutorial../node_modules/.bin/ng build --prod
or (.\node_modules\.bin\ng build --prod
on Windows). This produces a production Angular build available in the dist
directory.firebase deploy
which deployed the application.Thank you so much. Worked like a charm.