원규


import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tailwindcss from "@tailwindcss/vite";
export default defineConfig({
plugins: [react(), tailwindcss()],
server: {
proxy: {
"/api": {
target: "<http://localhost:8080>",
changeOrigin: true,
},
"/oauth2/authorization": {
target: "<http://localhost:8080>",
changeOrigin: true,
},
"/login/oauth2": {
target: "<http://localhost:8080>",
changeOrigin: true,
},
},
},
});
효정

게시글 controller도 원래 세션으로 받던 값들을 모두 삭제 후 oauth로 정정
yml에 소셜로그인에 필요한 사이트들의 값들 받아서 처리
application.yml, application-api.yml로 나눠서 시크릿 값 넣는 건 성공
