36 lines
839 B
TypeScript
36 lines
839 B
TypeScript
import path from "path";
|
|
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
import { createUiDevWatchOptions } from "./src/lib/vite-watch";
|
|
|
|
export default defineConfig(({ mode }) => ({
|
|
plugins: [react(), tailwindcss()],
|
|
build: {
|
|
minify: "esbuild",
|
|
},
|
|
esbuild:
|
|
mode === "production"
|
|
? {
|
|
drop: ["console", "debugger"],
|
|
legalComments: "none",
|
|
}
|
|
: undefined,
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
lexical: path.resolve(__dirname, "./node_modules/lexical/Lexical.mjs"),
|
|
},
|
|
},
|
|
server: {
|
|
port: 5173,
|
|
watch: createUiDevWatchOptions(process.cwd()),
|
|
proxy: {
|
|
"/api": {
|
|
target: "http://localhost:3100",
|
|
ws: true,
|
|
},
|
|
},
|
|
},
|
|
}));
|