app.component.ts 397 B

12345678910111213141516
  1. import { Component } from '@angular/core';
  2. import * as Parse from "parse";
  3. Parse.initialize("dev");
  4. (Parse as any).serverURL = 'https://web2023.fmode.cn/parse';
  5. (Parse as any).liveQueryServerURL = 'https://web2023.fmode.cn/parse';
  6. @Component({
  7. selector: 'app-root',
  8. templateUrl: 'app.component.html',
  9. styleUrls: ['app.component.scss'],
  10. })
  11. export class AppComponent {
  12. constructor() {}
  13. }