Change a page title

Hi there :wave:,
I’m not sure if this is the right place to ask how-to questions, if not, let me know and I’ll move it somewhere else.
I’d like to change the title of my pages and I was wondering if using something like Helmet is the right approach for that. Also, I noticed that the main index.html has a default title set to:

<title><%= htmlWebpackPlugin.options.title %></title>

Where is that title come from?

Thanks in advance for your help.

Hi @pepibumur! Welcome to the Redwood community forums :slight_smile:

I think you’re right on track with the React Helmet idea! See this topic for some previous discussions on the subject

^^ This is just us being able to set the site title to project directly title at time of installation. It’s meant to be removed as needed.

React Helmet is great and highly recommended!

Have a look in packages/core/config/webpack.common.js:

If I want to change it, I define my own web/config/webpack.config.js in my app: