refactor(boilerplate): added tailwind conf and folders

This commit is contained in:
JK-le-dev 2025-10-18 13:50:13 -05:00
commit a3e52fbee3
9 changed files with 583 additions and 132 deletions

View file

@ -1,7 +1,8 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import jsconfigPaths from "vite-jsconfig-paths";
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
})
plugins: [react(), jsconfigPaths()],
});