mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-26 11:51:17 +00:00
19 lines
384 B
TypeScript
19 lines
384 B
TypeScript
|
|
import path from "path"
|
||
|
|
import tailwindcss from "@tailwindcss/vite"
|
||
|
|
import react from "@vitejs/plugin-react"
|
||
|
|
import { defineConfig } from "vite"
|
||
|
|
|
||
|
|
// https://vite.dev/config/
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [react(), tailwindcss()],
|
||
|
|
resolve: {
|
||
|
|
alias: {
|
||
|
|
"@": path.resolve(__dirname, "./src"),
|
||
|
|
},
|
||
|
|
},
|
||
|
|
server: {
|
||
|
|
port: 5174,
|
||
|
|
allowedHosts: true,
|
||
|
|
},
|
||
|
|
})
|