You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just wanted to create new project using the library which worked creat in the past but at the moment I face an issue I can't seem to solve. After installation of the vue3 / cli etc and the fomantic ui packages I get the following error when starting dev server:
TypeError: Cannot read properties of undefined (reading 'get')
during rendering of asset asset/inline|data:application/x-font-ttf;charset=utf-8;;base64,..
I've read somewhere it should be an webpack issue? Any idea?
Hi,
I just wanted to create new project using the library which worked creat in the past but at the moment I face an issue I can't seem to solve. After installation of the vue3 / cli etc and the fomantic ui packages I get the following error when starting dev server:
TypeError: Cannot read properties of undefined (reading 'get')
during rendering of asset asset/inline|data:application/x-font-ttf;charset=utf-8;;base64,..
I've read somewhere it should be an webpack issue? Any idea?
my package json:
{
"name": "website",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"core-js": "^3.8.3",
"fomantic-ui-css": "^2.8.8",
"vue": "^3.2.13",
"vue-class-component": "^8.0.0-0",
"vue-fomantic-ui": "^0.11.1",
"vue-property-decorator": "^9.1.2",
"vue-router": "^4.0.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~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",
"@vue/compiler-sfc": "^3.2.31",
"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": {
"@typescript-eslint/ban-ts-comment": "off",
"prefer-const": "off"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}
The text was updated successfully, but these errors were encountered: