개발 공부
-
티스토리 블로그 포스팅 버튼 만들기 html CSS 코드개발 공부 2025. 2. 4. 12:05
내가 쓰려고 만든 티스토리 블로그 포스팅 버튼 html CSS 코드 노란 바탕, 검정 글씨 글씨 크기 30px 버튼 스타일 부터 css 적용 버튼은 .button 있는 부분 보면 됨. 배경 색 바꾸고싶다면 -> background-color: 변경하고 싶은 색깔; 글자 색 바꾸고 싶으면 -> color: 바꿀 글자색;글자 크기 변경 원한다면 -> font-size: 원하는 글자크기px; 버튼 바로가기 위 css 적용 후 이렇게 버튼 생성하면, css에 맞는 디자인 버튼 생성됨 href -> 여기에 버튼 클릭시 이동할 페이지 url 넣기버튼 바로가기 -> 여기에 버튼 내 글씨 작성하기 끝
-
C# Blazor WebAssembly 프로젝트 구성 요소 설명개발 공부/C# 2025. 1. 13. 16:51
1. 프로젝트 구성 파일 : Program.cs애플리케이션의 진입점으로, 앱이 시작할 때 실행되는 코드가 들어 있음. 여기서 DI(Dependency Injection)를 설정하거나 HttpClient와 같은 서비스를 등록. var builder = WebAssemblyHostBuilder.CreateDefault(args);builder.RootComponents.Add("#app");builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });await builder.Build().RunAsync();역할Add: 컴포넌트를 HTML의 #app 요소에 렌더링.H..
-
google oauth에러 unable to verify the first certificate 해결 방법개발 공부 2023. 10. 6. 10:07
[error] Error: Failed to list Firebase projects. See firebase-debug.log for more info. [debug] [2023-10-05T23:52:50.620Z] *** [apiv2] error from fetch(https://firebase-public.firebaseio.com/cli.json, {"headers":{},"method":"GET"}): FetchError: request to https://firebase-public.firebaseio.com/cli.json failed, reason: unable to verify the first certificate [warn] ! Unable to fetch the CLI MOTD an..
-
Vue.js PWA 프로젝트 firebase 호스팅 방법개발 공부/PWA 2023. 10. 6. 08:56
1. firebase 설치 npm install -g firebase-tools 2. 빌드 npm run build * 빌드 후 dist 폴더 생기는걸 볼 수 있음 3. ".firebase" , "firebase.json" 파일 생성 - .firebase : "first" 는 내 프로젝트 이름임 { "projects":{ "default" : "first" } } - firebase.json { "hosting":{ "public":"dist", "ignore": [ "firebase.json", "**/.*", "**/node_modules/**" ], "rewrites":[ { "source":"**", "destination":"/index.html" } ] } } * 프로젝트 구성 참고 https..
-
Vue.js 프로젝트 PWA 적용하기 - 매니페스트, 서비스워커 (Manifest, Service Worker)개발 공부/PWA 2023. 10. 5. 13:32
전 시리즈 : Vue js 프로젝트 생성 방법 vue cli로 시작하기 PWA 적용을 위해 필요한 것 - Manifest - Service Worker 1. Manifest 적용 * public 폴더에 manifest.json 파일 추가 - manifest.json { "short_name": "TestRozy", "name": "RozyPWA", "icons": [ { "src": "favicon.ico", "sizes": "64x64 32x32 24x24 16x16", "type": "image/x-icon" }, { "src": "/images/logo.png", "sizes": "200x200", "type": "image/png" }, { "src": "/images/img.png", "size..