···11+// This file can be replaced during build by using the `fileReplacements` array.
22+// `ng build` replaces `environment.ts` with `environment.prod.ts`.
33+// The list of file replacements can be found in `angular.json`.
44+//
55+//
66+// This is for development options TODO: add jsdocs.
77+export const environment = {
88+ production: false,
99+ maxUploadSize: '250',
1010+ logo: '/assets/logo.png',
1111+ baseUrl: 'https://development.wafrn.net/api',
1212+ baseMediaUrl: 'https://development.wafrn.net/api/uploads',
1313+ externalCacheurl: 'https://development.wafrn.net/api/cache?media=',
1414+ frontUrl: 'http://localhost:4200',
1515+ shortenPosts: 3,
1616+ reviewRegistrations: true,
1717+ disablePWA: false,
1818+ maintenance: false
1919+}
2020+2121+/*
2222+ * For easier debugging in development mode, you can import the following file
2323+ * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
2424+ *
2525+ * This import should be commented out in production mode because it will have a negative impact
2626+ * on performance if an error is thrown.
2727+ */
2828+import 'zone.js/plugins/zone-error' // Included with Angular CLI.
+1-1
shell.nix
···4455pkgs.mkShell {
66 buildInputs = with pkgs; [ nodejs_24 jq ];
77- shellHook = "echo \"Use \"npm run frontend:develop:prod\" to start the development server\"";
77+ shellHook = "echo \"Use \"npm run frontend:develop:prod\" to start the development server, make sure to clear your cache if you run a switch servers!\"";
88}