import{defineConfig}from'vite';importvuefrom'@vitejs/plugin-vue';// GitHub Pages serves a project site under /<repo>/. Override with PAGES_BASE
// (e.g. "/" for a user/org page or custom domain).
constbase=process.env.PAGES_BASE||'/purecrypto/';exportdefaultdefineConfig({base,plugins:[vue()],build:{target:'es2022',// The .wasm lives in public/ and is fetched at runtime, not bundled.
assetsInlineLimit:0,},});