Hello
Can you help me please i have an application and on my computer is everything ok but when I deploy my app to the zip and then upload it to the server the application has an error :
main.2b99f3534f5c5eaeb161.js:1 Uncaught TypeError: i(...).width is not a function
at n._recalculateOrientation (main.2b99f3534f5c5eaeb161.js:1:1223087)
at n.ctor (main.2b99f3534f5c5eaeb161.js:1:1220437)
at new n (main.2b99f3534f5c5eaeb161.js:1:187192)
at Object.LdFP (main.2b99f3534f5c5eaeb161.js:1:1220245)
at f (runtime.4cd17dad50b0f888773e.js:1:507)
at Object.tPCu (main.2b99f3534f5c5eaeb161.js:1:2552988)
at f (runtime.4cd17dad50b0f888773e.js:1:507)
at Object.HS8O (main.2b99f3534f5c5eaeb161.js:1:956840)
at f (runtime.4cd17dad50b0f888773e.js:1:507)
at Object.y1Hg (main.2b99f3534f5c5eaeb161.js:1:2821970)
here is my package.json :
{
"name": "plan-im",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "7.2.15",
"@angular/cdk": "7.3.7",
"@angular/common": "7.2.15",
"@angular/compiler": "7.2.15",
"@angular/core": "7.2.15",
"@angular/forms": "7.2.15",
"@angular/platform-browser": "7.2.15",
"@angular/platform-browser-dynamic": "7.2.15",
"@angular/router": "7.2.15",
"@angular/service-worker": "7.2.15",
"@auth0/angular-jwt": "^2.1.0",
"@radzen/angular": "^2.66.10",
"classlist.js": "1.1.20150312",
"core-js": "^2.5.1",
"devextreme": "^19.2.15",
"devextreme-angular": "latest",
"devextreme-schematics": "^1.0.13",
"moment": "2.24.0",
"rxjs": "~6.3.3",
"stream": "0.0.2",
"web-animations-js": "2.3.1",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.13.0",
"@angular/cli": "~7.3.8",
"@angular/compiler-cli": "~7.2.15",
"@angular/language-service": "~7.2.15",
"@ngx-i18nsupport/ngx-i18nsupport": "^1.1.3",
"@ngx-i18nsupport/tooling": "^1.1.3",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"codelyzer": "~4.5.0",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "~5.4.0",
"ts-node": "~7.0.0",
"tslint": "~5.11.0",
"typescript": "~3.2.2"
}
}