전체 글(850)
-
because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
response 결과가 '302'로 나옴css 파일이 존재하지만, Spring boot Security에서 로그인 예외처리를 하지 않아서 접근이 안되는 문제환경설정에서 예외 처리를 해줘야 함@Configuration@EnableWebSecuritypublic class WebSecurityConfig { @Bean public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception { http.authorizeHttpRequests((requests) -> requests .requestMatchers("/", "{css 디렉토리}/*.css").permitAll() .anyRequest().authenticat..
2024.07.18 -
pytube Trouble Shooting
urllib.error.HTTPError: HTTP Error 400: Bad Request참조: https://github.com/pytube/pytube/issues/1894 [BUG] Age restriction fix is no longer working, producing 400, bad request · Issue #1894 · pytube/pytubeDescribe the bug When you use the age restriction fix that has always worked (described here), it now produces bad request. To Reproduce Please provide the following information: innterube.py st..
2024.07.18 -
theme css 파일 위치
{ext 설치 위치}/build/classic/theme-*/resources{ext 설치 위치}/build/modern/ theme-*/resources
2024.07.16 -
Ext에 property 추가
Ext.theme.name을 추가하고 싶을 때 Ext 객체와 이름이 같아서 충돌이 생기는 경우
2024.07.16 -
HTML 파일에 Sencha 적용
Sprng boot Security가 적용 안된 경우# spring boot에서 한글깨지는 문제 해결을 위해서 설정# Ext를 참조하기 위해서 적용# Ext.getBody()를 적용하기 위해서 스크립트 보다 먼저 생성되어야 함Sprng boot Security가 적용된 경우에러 발생Refused to execute script from 'http://localhost:{port}/login' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled.Understand this errorlogin:17 Uncaught ReferenceError: Ext is not defined at l..
2024.07.13 -
Sencha Trouble Shooting
Missing required arguments.# 실행cd app이 생성되어야 하는 디렉토리sencha -skd {sencha 설치 위치} generate app {app 이름}# 에러[ERR] Missing required arguments. sencha.generate.app requires these parameters: path (The path for the generated application) For usage info, see sencha help generate app # 조치후 실행sencha -skd {sencha 설치 위치} generate app {app 이름} .
2024.07.13