mirror of
https://github.com/artvs18/PostgreSQL-docker-image.git
synced 2025-05-29 21:47:54 +02:00
16 lines
271 B
TypeScript
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,
|
|
}
|
|
});
|