Ich versuche, ein myApp.config-Modul zu erstellen, um einige Einstellungen für meine App zu speichern. Ich habe eine config.js-Datei geschrieben: angular.module('myApp.config', []) .constant('APP_NAME','My Angular App!') .constant('APP_VERSION','0.3'); Ich habe es meiner app.js (eckiger Samen)...