17 lines
341 B
TypeScript
17 lines
341 B
TypeScript
import tailwindcss from "@tailwindcss/vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
base: "/calendario-impuestos/",
|
|
plugins: [react(), tailwindcss()],
|
|
server: {
|
|
port: 3000,
|
|
strictPort: true,
|
|
},
|
|
preview: {
|
|
port: 3000,
|
|
strictPort: true,
|
|
},
|
|
});
|