1
0
mirror of https://github.com/artvs18/PostgreSQL-docker-image.git synced 2025-05-29 21:47:54 +02:00
PostgreSQL-docker-image/ui/vite.config.ts
Artemy Volkov 7093744323 Version 0.1
Version 0.1 of Docker PostgreSQL image
2023-01-28 01:35:53 +03:00

16 lines
271 B
TypeScript

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
base: "./",
build: {
outDir: "build",
},
server: {
port: 3000,
strictPort: true,
}
});