mirror of
https://github.com/Kvan7/Exiled-Exchange-2.git
synced 2026-09-24 13:45:50 +00:00
* Features/prettier (#43) * prettier cause of course * Adds prettier and item parsing * lint * lint 23 * Features/addAnonVodkaPython (#45) * lots of json * add width and height update files * ignore * update stats * remove ward and pseudo stats * Add option to always close overlay (#48) Fixes #47 I haven't tested this, but it should work fine. * Features/updateParser (#53) * logs * Kinda sorta works? * switch chaos to ex * adds flasks and whetstone * Fix charms * update phys rune * add todo * cleanup * add pull script * Trade tag and icons for bulk items (#54) * Append trade tag and icon for bulk items * Update items * update json * update images & add ref images for later * bump version * fix uncut gems #58
36 lines
763 B
TypeScript
36 lines
763 B
TypeScript
import path from "path";
|
|
import { defineConfig } from "vite";
|
|
import vue from "@vitejs/plugin-vue";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
build: {
|
|
target: "esnext",
|
|
assetsInlineLimit: 0,
|
|
},
|
|
optimizeDeps: {
|
|
esbuildOptions: { target: "esnext" },
|
|
},
|
|
plugins: [
|
|
vue({
|
|
template: {
|
|
compilerOptions: {
|
|
isCustomElement: (tag) => tag === "webview",
|
|
},
|
|
},
|
|
}),
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
"@ipc": path.resolve(__dirname, "./src/../../ipc"),
|
|
},
|
|
},
|
|
server: {
|
|
proxy: {
|
|
"^/(config|uploads|proxy)": { target: "http://127.0.0.1:8584" },
|
|
"/events": { ws: true, target: "http://127.0.0.1:8584" },
|
|
},
|
|
},
|
|
});
|