File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import { bootstrapApplication } from '@angular/platform-browser' ;
2+ import { provideZoneChangeDetection } from '@angular/core' ;
13import config from 'devextreme/core/config' ;
4+ import { AppComponent } from './app/app.component' ;
25import { licenseKey } from './devextreme-license' ;
36
47config ( { licenseKey } ) ;
58
6- import { bootstrapApplication } from '@angular/platform-browser' ;
7- import { provideZoneChangeDetection } from '@angular/core' ;
8- import { AppComponent } from './app/app.component' ;
9-
109bootstrapApplication ( AppComponent , {
1110 providers : [ provideZoneChangeDetection ( ) ] ,
1211} ) . catch ( ( err ) => console . error ( err ) ) ;
Original file line number Diff line number Diff line change 1- import config from 'devextreme/core/config' ;
2- import { licenseKey } from './devextreme-license' ;
3-
4- config ( { licenseKey } ) ;
5-
61import { StrictMode } from 'react' ;
72import { createRoot } from 'react-dom/client' ;
3+ import config from 'devextreme/core/config' ;
84import './index.css' ;
95import App from './App.tsx' ;
6+ import { licenseKey } from './devextreme-license' ;
7+
8+ config ( { licenseKey } ) ;
109
1110createRoot ( document . getElementById ( 'root' ) as HTMLElement ) . render (
1211 < StrictMode >
Original file line number Diff line number Diff line change 1- import config from 'devextreme/core/config' ;
2- import { licenseKey } from './devextreme-license' ;
3-
4- config ( { licenseKey } ) ;
5-
61import { createApp } from 'vue' ;
2+ import config from 'devextreme/core/config' ;
73import App from './App.vue' ;
84import router from './router' ;
9-
105import './assets/main.css' ;
6+ import { licenseKey } from './devextreme-license' ;
7+
8+ config ( { licenseKey } ) ;
119
1210const app = createApp ( App ) ;
1311
You can’t perform that action at this time.
0 commit comments