Background

During login, the verification code will be required. Some people may ask, can you disable the verification code in the development stage to improve the development experience?

Solution

The answer is yes. Just modify the following configuration in the file {project}/src/backend/config/config.local.js:

  1. 1// modules config
  2. 2config.modules = {
  3. 3 'a-captcha': {
  4. 4 configFront: {
  5. 5 local: {
  6. 6 disabled: true,
  7. 7 },
  8. 8 },
  9. 9 },
  10. 10};