UNPKG

mantis-app

Version:

M.A.N.T.I.S (MongoDB, Analog, Nx, Tailwind CSS, Ionic, Storybook) is not just a CLI tool; it's your passport to a seamless full-stack project launch.

13 lines (11 loc) 403 B
import { ApplicationConfig } from '@angular/core'; import { provideHttpClient, withFetch } from '@angular/common/http'; import { provideClientHydration } from '@angular/platform-browser'; import { provideFileRouter } from '@analogjs/router'; export const appConfig: ApplicationConfig = { providers: [ provideFileRouter(), provideClientHydration(), provideHttpClient(withFetch()), ], };