본문 바로가기

에러3

Python 프로젝트 Heroku deploy 시 Determining which buildpack to use for this appremote: ! No default language could be detected for this app에 python + django 프로젝트를 Heroku에 deploy하려는 데 계속 No default language could be detected for this app 에러가 났다...! 이 때의 해결 방법은 1. 루트 폴더에 requirements.txt가 있는 지 확인. 없으면 $ pip freeze > requirements.txt 로 생성. 2. 루트 폴더에 runtime.txt가 있는 지 확인. 없으면 만들고, 안에는 python-3.8.10 과 같이 나의 python 버전을 써준다. 나의 python 버전이 궁금하면 $ ##_env/Scripts/activate (윈도우 기준, 가상 환경 실행) >>> python --version 하면 확인할 수 있다. 하지만!!! 나의 경우 몇 번을 확.. 2021. 6. 7.
[React.js] Each child in a list should have a unique "key" prop 계속 뜰 때 분명 나는 unique한 key 값을 준 것 같은데!!!!!!! Warning: Each child in a list should have a unique "key" prop 에러가 계속 떴다. ㅜ 검색을 열심히 해보니 stackoverflow.com/questions/34576332/warning-each-child-in-an-array-or-iterator-should-have-a-unique-key-prop-che Warning: Each child in an array or iterator should have a unique "key" prop. Check the render method of `ListView` I built an app with ReactNative both for iOS a.. 2021. 5. 12.
npm run build시 html-webpack-plugin 에러 Error: html-webpack-plugin could not minify the generated output. In production mode the html minifcation is enabled by default. If you are not generating a valid html output please disable it manually. You can do so by adding the following setting to your HtmlWebpackPlugin config: | | minify: false | See https://github.com/jantimon/html-webpack-plugin#options for details. npm run build를 했는데 위와 .. 2021. 4. 14.