Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 'use strict'; exports.unsupportedServices = (services = '') => ({ title: 'Unsupported Platform.sh services detected', detail: [ 'Lando has detected services in your Platform.sh config which are not yet supported.', 'This may result in errors or reduced functionality.', `The unsupported services are: ${services}`, 'See the documentation below for more detail:', ], url: 'https://docs.lando.dev/config/platformsh.html', }); exports.unsupportedLanguages = (languages = '') => ({ title: 'Unsupported Platform.sh languages detected', detail: [ 'Lando has detected application languages in your Platform.sh config which are not yet supported.', 'This may result in errors or reduced functionality.', `The unsupported languages are: ${languages}`, 'See the documentation below for more detail:', ], url: 'https://docs.lando.dev/config/platformsh.html', }); |