Files
slot/ui/vite.config.ts

18 lines
368 B
TypeScript
Raw Permalink Normal View History

2025-06-03 00:14:21 +02:00
import path from "path"
import tailwindcss from "@tailwindcss/vite"
2025-05-05 23:28:09 +02:00
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
// https://vite.dev/config/
export default defineConfig({
2025-06-03 00:14:21 +02:00
plugins: [react(), tailwindcss()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
}
2025-06-03 21:22:49 +00:00
},
server: {
host: "127.0.0.1"
2025-06-03 00:14:21 +02:00
}
2025-05-05 23:28:09 +02:00
})