git add -A
stages all changes
git add .
stages new files and modifications, without deletions (on the current directory and its subdirectories).
git add -u
stages modifications and deletions, without new files
| //next.config.js | |
| module.exports = { | |
| i18n: { | |
| locales: ['en-US', 'fr', 'ko'], //list of languages | |
| defaultLocale: 'en-US' //set the default language | |
| } | |
| } |
| //next.config.js | |
| module.exports = { | |
| i18n: { | |
| locales: ['en-US', 'fr', 'ko'], | |
| domains: [ | |
| { | |
| domain: 'yourdomain.com', | |
| defaultLocale: 'en-US' | |
| }, | |
| { |
| license: gpl-3.0 | |
| height: 1000 | |
| border: no |
| license: gpl-3.0 | |
| height: 120 | |
| border: no |