All checks were successful
Test CI / build (push) Successful in 19s
- 로그인 요청 후 응답을 AuthData 로 저장 로직 구현 - Access/Refresh 토큰 구현 중
20 lines
367 B
TypeScript
20 lines
367 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
import tailwindcss from '@tailwindcss/vite'
|
|
import path from 'path'
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
server: {
|
|
port: 5185
|
|
},
|
|
plugins: [
|
|
react(),
|
|
tailwindcss()
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src")
|
|
}
|
|
}
|
|
})
|