Sets up the fundamental structure for the AURORA LUXE TRAVEL Angular application. Includes project configuration, dependencies for Angular and Tailwind CSS, and basic HTML and TypeScript entry points. Defines static destination, experience, and testimonial data for initial use.
12 lines
410 B
TypeScript
12 lines
410 B
TypeScript
import '@angular/compiler';
|
|
import { bootstrapApplication } from '@angular/platform-browser';
|
|
import { provideZonelessChangeDetection } from '@angular/core';
|
|
import { AppComponent } from './src/app.component';
|
|
|
|
bootstrapApplication(AppComponent, {
|
|
providers: [
|
|
provideZonelessChangeDetection()
|
|
]
|
|
}).catch(err => console.error(err));
|
|
|
|
// AI Studio always uses an `index.tsx` file for all project types.
|