Disable Italian language support in production configuration#273
Conversation
|
Azure Static Web Apps: Your stage site is ready! Visit it here: https://agreeable-island-0c966e810-273.centralus.6.azurestaticapps.net |
There was a problem hiding this comment.
Pull request overview
This PR disables Italian language support in the production environment by adding the it language with disabled: true to the production configuration file.
Key changes:
- Adds Italian language configuration to
hugo.production.yamlwith thedisabledflag set totrue
You can also share your feedback on Copilot code review for a chance to win a $100 gift card. Take the survey.
| it: | ||
| disabled: true |
There was a problem hiding this comment.
The Italian language entry should be positioned according to its weight value (3) defined in the main hugo.yaml. Currently, Italian is placed at the end of the languages list after Portuguese (weight: 5), but based on its weight of 3, it should be positioned between Polish (weight: 3) and Spanish (weight: 4) to maintain consistency with the ordering pattern used in the main configuration.
This change is