Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

config.template.js 692B

12345678910111213141516171819
  1. module.exports = {
  2. /*
  3. Headless mode forces the firepit builds to exactly imitate firebase-tools,
  4. so the resulting binary "firebase" is a drop in replacement for the script
  5. installed via npm. This is the behavior for CI / Cloud Shell / Docker etc.
  6. When headless mode is disabled, the "double click" experience is enabled
  7. which allows the binary to spawn a terminal on Windows and Mac. The is the
  8. behavior for desktop users.
  9. */
  10. headless: false,
  11. /*
  12. This is generally set to "firebase-tools@latest" however a custom value
  13. can be supplied for EAPs which would like to have builds pointed at
  14. specific tgz bundles.
  15. */
  16. firebase_tools_package: ""
  17. };