spb/vquant Public MIT
VibeQuant — AI-powered institutional-grade financial intelligence platform.
TypeScript 84.3%
Python 11.7%
JavaScript 1.6%
CSS 1.5%
HTML 0.7%
1/*2 * =============================================================================3 * VibeQuant (vquant) — AI-Powered Financial Intelligence Platform4 * -----------------------------------------------------------------------------5 * File: vite.config.ts6 *7 * Author: Simon-Pierre Boucher8 * Contact: contact@spboucher.ai9 * Website: https://www.spboucher.ai10 * Demo: https://www.vquant.ai11 * License: MIT (see LICENSE)12 *13 * Copyright © 2026 Simon-Pierre Boucher. All rights reserved.14 * =============================================================================15 */1617import { defineConfig } from "vite";18import react from "@vitejs/plugin-react";19import path from "path";2021export default defineConfig({22 plugins: [react()],23 resolve: {24 alias: {25 "@": path.resolve(import.meta.dirname, "client", "src"),26 "@shared": path.resolve(import.meta.dirname, "shared"),27 },28 },29 root: path.resolve(import.meta.dirname, "client"),30 build: {31 outDir: path.resolve(import.meta.dirname, "dist/public"),32 emptyOutDir: true,33 },34 server: {35 fs: {36 strict: false,37 allow: [38 path.resolve(import.meta.dirname),39 path.resolve(import.meta.dirname, ".."),40 ],41 },42 },43});44