Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a6e3564779 |
@@ -3,5 +3,10 @@ import react from '@vitejs/plugin-react'
|
|||||||
|
|
||||||
// https://vite.dev/config/
|
// https://vite.dev/config/
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
plugins: [react()],
|
plugins: [react()],
|
||||||
|
server: {
|
||||||
|
proxy:{
|
||||||
|
"/api": "http://localhost:8080"
|
||||||
|
}
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -9,15 +9,15 @@ import authRoutes from './routes/auth'
|
|||||||
const bootstrap = async () => {
|
const bootstrap = async () => {
|
||||||
await mongo.connect()
|
await mongo.connect()
|
||||||
|
|
||||||
app.get('/', (req, res) => {
|
app.get('/api', (req, res) => {
|
||||||
res.status(200).send('Hello, world!')
|
res.status(200).send('Hello, world!')
|
||||||
})
|
})
|
||||||
|
|
||||||
app.get('/healthz', (req, res) => {
|
app.get('/api/healthz', (req, res) => {
|
||||||
res.status(204).end()
|
res.status(204).end()
|
||||||
})
|
})
|
||||||
|
|
||||||
app.use('/auth', authRoutes)
|
app.use('/api/auth', authRoutes)
|
||||||
// add rest of routes here...
|
// add rest of routes here...
|
||||||
|
|
||||||
app.listen(PORT, () => {
|
app.listen(PORT, () => {
|
||||||
|
|||||||
Reference in New Issue
Block a user