I'm getting the following in my Debug Console when I run my application;
License activation failed for @progress/kendo-ui v2023.1.425
No license found.
See https://docs.telerik.com/kendo-ui/intro/installation/using-license-code for more information.
This despite having the license file present in my project root. At the moment, I have removed the environment variable since I thought it might be causing a conflict.
I have also used npm uninstall to remove all my local packages and I have reinstalled the. Her eis my current package.json;
{
"name": "wpgts",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@progress/kendo-file-saver": "^1.1.1",
"@progress/kendo-licensing": "^1.3.0",
"@progress/kendo-map-vue-wrapper": "^2023.1.314",
"@progress/kendo-svg-icons": "^1.4.2",
"@progress/kendo-theme-default": "^6.2.0",
"@progress/kendo-theme-fluent": "^6.2.0",
"@progress/kendo-ui": "^2023.1.314",
"@progress/kendo-vue-buttons": "^3.9.1",
"@progress/kendo-vue-dateinputs": "^3.9.1",
"@progress/kendo-vue-dialogs": "^3.9.1",
"@progress/kendo-vue-dropdowns": "^3.9.1",
"@progress/kendo-vue-form": "^3.9.1",
"@progress/kendo-vue-indicators": "^3.9.1",
"@progress/kendo-vue-inputs": "^3.9.1",
"@progress/kendo-vue-intl": "^3.9.1",
"@progress/kendo-vue-layout": "^3.9.1",
"core-js": "^3.8.3",
"jquery": "^3.6.4",
"register-service-worker": "^1.7.2",
"rxjs": "^6.6.7",
"vue": "^3.2.13",
"vue-router": "^4.0.3",
"vue-rx": "^6.2.0"
},
"devDependencies": {
"@types/jquery": "^3.5.16",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-plugin-pwa": "~5.0.0",
"@vue/cli-plugin-router": "~5.0.0",
"@vue/cli-plugin-typescript": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"@vue/eslint-config-typescript": "^9.1.0",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^8.0.3",
"typescript": "~4.5.5"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended",
"@vue/typescript/recommended"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}
Why am I getting this licensing issue despite having followed the instruction at this link;
https://www.telerik.com/kendo-vue-ui/components/my-license/
Any help would be greatly appreciated.
Thanks...