Files
QueueCube/frontend/vite.config.ts

37 lines
1.1 KiB
TypeScript
Raw Permalink Normal View History

2025-04-24 16:24:22 -07:00
/*
* vite.config.ts
* Copyleft 2025 James Magahern <buzzert@buzzert.net>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License,
* or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2025-02-15 01:26:10 -08:00
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
2025-02-15 12:15:41 -08:00
import tailwindcss from '@tailwindcss/vite'
2025-02-15 01:26:10 -08:00
// https://vite.dev/config/
export default defineConfig({
2025-02-15 12:15:41 -08:00
plugins: [react(), tailwindcss()],
2025-02-15 01:26:10 -08:00
server: {
2025-02-15 12:15:41 -08:00
// For development only: proxy /api to backend running on separate port.
2025-02-15 01:26:10 -08:00
proxy: {
'/api': {
target: 'http://localhost:3000',
2025-02-15 16:28:47 -08:00
changeOrigin: true,
ws: true
2025-02-15 01:26:10 -08:00
}
}
}
})