13 lines
320 B
TypeScript
13 lines
320 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import tsconfigPaths from "vite-tsconfig-paths";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
|
|
export default defineConfig({
|
|
base: "/tablero-cdc/",
|
|
plugins: [react(), tsconfigPaths(), tailwindcss()],
|
|
server: {
|
|
port: 3000,
|
|
},
|
|
});
|