mirror of
https://github.com/PhaseII-eAmusement-Network/PhaseWeb3-Vue.git
synced 2026-03-21 17:54:26 -05:00
Some checks are pending
Build / build (push) Waiting to run
Initial move to tailwind V4. breaks a couple things visually, a few animations are off, mostly working though.
20 lines
444 B
JavaScript
20 lines
444 B
JavaScript
import { fileURLToPath, URL } from "node:url";
|
|
import { defineConfig } from "vite";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
import vue from "@vitejs/plugin-vue";
|
|
import dotenv from "dotenv";
|
|
|
|
// Load .env file
|
|
dotenv.config();
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
base: "/",
|
|
plugins: [vue(), tailwindcss()],
|
|
resolve: {
|
|
alias: {
|
|
"@": fileURLToPath(new URL("./src", import.meta.url)),
|
|
},
|
|
},
|
|
});
|