How can I change my react app title on google search? [closed] - reactjs

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 3 years ago.
Improve this question
I deployed a website built using react. That site's is kbucard.com.
The problem is, if I search my web on google, like 'kbucard.com', then I can find it but my website's name is just "React App" and my website's description is "Web site created using create-react-app".
This image will help you understand my issue:
I already changed title tag and meta tags in index.html and I used react-helmet and also I installed babel-polyfill but nothing worked. I deployed this web on our university computer, used nginx and jenkins.
Please help me resolve this problem. Thank you in advance.

Related

Hosting MERN Application on Vercel [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 16 hours ago.
Improve this question
Deployment MERN App on Vercel
I've been using Vercel to host several React web applications and it's been great! Recently, I upgraded an existing project with a backend (Express.js and MongoDB Atlas) and I'd like to host it there as well.
I would like to know if the configuration that I've put in my repository is correct in order to make it work on Vercel. Vercel's documentation focuses on serverless deployment, and while I don't mind rewriting my backend if I have to, I'm wondering if there's an easier solution for adding a server/database.
The MERN stack is still relatively popular so I imagine a lot of developers have found a way to host this kind of project. If anyone can help, I would really appreciate it
Here is my repo: https://gitlab.com/narcamarco/project-tours

Setting debug=False with Django Rest Framework and React does not work [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 1 year ago.
Improve this question
I have a project on which I use Django Rest Framework and React.
I also use amazon s3 for static and file storage.
The problem is that when I set debug=False in settings, there is nothing except white empyt page. Have you ever met this problem and what did you do to solve ? Thanks
I solved this problem. In settings.py there is a variable called "STATICFILES_STORAGE = 'storages.backends.s3boto3.S3StaticStorage'". I removed this and all static files uploaded to heroku but my media files run on amazon by the variable called DEFAULT_FILE_STORAGE'storages.backends.s3boto3.S3Boto3Storage'.

How does google know what pages to crawl when using GatsbyJS [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 4 years ago.
Improve this question
Pardon my lack of knowledge here, I am still new to using GatsbyJS.
When building out locally if I hit a 404 page I get a list of available pages. (see attached)
Just wondering if google indexes all these pages?
Google most likely will if it can see links to them and you don't have noindex hints or Disallow rule that affects them in robots.txt. Your best bet is to use gatsby-plugin-sitemap to generate a sitemap.xml . That you can submit to google and others.

Where are the files uploaded from gloud app deploy? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 4 years ago.
Improve this question
Where do i access the files uploaded through running gcloud app deploy?
I may want to remove some files i uploaded too. How do i do that?
You can't really select files to delete. The app is uploaded as a package to Google App Engine so we can serve your App Engine out. If you want to delete files, you will simply have to upload a new version without those files and then delete the old version.

React-router issues with deploying github pages, with create-react-app [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I am having the hardest time deploying a simple react application to github pages. You move one file to a wrong directory and it throws the entire process off.
What do I do once I run npm run build?
That puts all my files into a build folder, but the browser still keeps giving me 404 errors, thinking that anything typed after the initial url route's "/" is looking for an actual file from a server. I just want to use whatever comes after the / as routes that I set up in my React Router... :(
Create-React-App has a detailed documentation on how to deploy your build to Github Pages and Heroku. You can read it here. Your specific issue is covered in "Notes on client-side routing" section.

Resources