config.js 581 B

123456789101112131415
  1. // THIS FILE IS JUST AN EXAMPLE
  2. //
  3. // It is removed during the build process. The actual config is dynamically
  4. // generated server-side and served by the ntfy server.
  5. //
  6. // During web development, you may change values here for rapid testing.
  7. var config = {
  8. baseUrl: "http://localhost:2586", // window.location.origin FIXME update before merging
  9. appRoot: "/app",
  10. enableLogin: true,
  11. enableSignup: true,
  12. enableResetPassword: false,
  13. disallowedTopics: ["docs", "static", "file", "app", "account", "settings", "pricing", "signup", "login", "reset-password"]
  14. };