adriano328 / calendar-iead

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FullCalendar Angular 15 Example Project

This is a fully-buildable example project for FullCalendar and Angular. It was initially created with the ng new command of the Angular CLI. For a complete walkthrough, read the FullCalendar Angular Docs »

Installation

git clone https://github.com/fullcalendar/fullcalendar-examples.git
cd fullcalendar-examples/angular15
npm install

Build commands

npm run build # build to a directory
npm run start # continously build, as a server

After running the npm run start command, you will be given a localhost URL that can be visited in a browser.

Monorepo Quirk

To get this example working within a monorepo, this hack was added to tsconfig.app.json. It can be safely removed if you're not using a monorepo.

"paths": {
  "@angular/*": ["./node_modules/@angular/*"]
},

StackBlitz Quirk

To get this example working within StackBlitz, the following hack was added to src/main.ts. It can be safely removed in other environments.

import 'zone.js' // hack for StackBlitz

About


Languages

Language:TypeScript 79.7%Language:CSS 11.2%Language:HTML 9.1%