I'm using Angular 8 Server-Side-Rendering (SSR) on Firebase Hosting. App is deployed by firebase function. Now I'm struggling how to add ads.txt from Google Adsense and where ads.txt should be placed in my project.
- I convert app in main directory with npm run build:ssr
- Next I copy converted dist directory to functions
- And finally when dist dir appends in functions dir I use firebase deploy
If it will be placed in right directory, does 'firebase deploy' will upload ads.txt to main directory?
Maybe I should upload file in another way?
Any help would be appreciated. Thanks Stack!