Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sarwar-asik/Error-solve
Errors I Experienced and Their Solutions.
https://github.com/sarwar-asik/Error-solve
backend django errors github hosting issue javascript nextjs node-js problem pytho react solver typescript vercel vscode
Last synced: about 1 month ago
JSON representation
Errors I Experienced and Their Solutions.
- Host: GitHub
- URL: https://github.com/sarwar-asik/Error-solve
- Owner: sarwar-asik
- Created: 2023-06-01T16:53:34.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-16T16:55:11.000Z (12 months ago)
- Last Synced: 2024-07-31T08:17:21.875Z (4 months ago)
- Topics: backend, django, errors, github, hosting, issue, javascript, nextjs, node-js, problem, pytho, react, solver, typescript, vercel, vscode
- Homepage:
- Size: 357 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome - sarwar-asik/Error-solve - Errors I Experienced and Their Solutions. (miscellaneous)
README
# My error [vite react ts project] :::>>>
### 1 Error for every html in [vite react ts project]::::
```jsx
Property 'div' does not exist on type 'JSX.IntrinsicElements'.
```### 1 solve : (run the command)
```bash
npm install --save-dev @types/react@latest @types/react-dom@latest
```#### 2 Error start every modules >>>
```js
Parsing error: ESLint was configured to run on `/tailwind.config.js` using `parserOptions.project`: /tsconfig.json
However, that TSConfig does not include this file. Either:
- Change ESLint's list of included files to not include this file
- Change that TSConfig to include this file
- Create a new TSConfig that includes this file and include it in your parserOptions.project
See the typescript-eslint docs for more info: https://typescript-eslint.io/linting/troubleshooting#i-get-errors-telling-me-eslint-was-configured-to-run--however-that-tsconfig-does-not--none-of-those-tsconfigs-include-this-filees```
#### 2. SOlve :::: (copy the code in .eslintrc.cjs)```json
"./tsconfig.json",extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'plugin:react-hooks/recommended',
"./tsconfig.json",
],```
# Github ::::>>>
```js# Error-solve
#### 1. (github)
$ git push -u origin main
remote: Repository not found.
fatal: repository 'https://github.com/sarwar-asik/Ready-Baend1.git/' not found
#### 1. solve
git credential-manager uninstall
git credential-manager install
git remote remove origin```