mirror of
https://github.com/YuzuZensai/Termix.git
synced 2026-09-13 10:49:03 +00:00
14 lines
330 B
TypeScript
14 lines
330 B
TypeScript
import path from "path"
|
|||
|
|
import tailwindcss from "@tailwindcss/vite"
|
||
|
|
import { defineConfig } from 'vite'
|
||
|
|
import react from '@vitejs/plugin-react-swc'
|
||
|
|
|
||
|
|
// https://vite.dev/config/
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [react(), tailwindcss()],
|
||
|
|
resolve: {
|
||
|
|
alias: {
|
||
|
|
"@": path.resolve(__dirname, "./src"),
|
||
|
|
},
|
||
|
|
},
|
||
|
|
})
|