Highly ambitious ATProtocol AppView service and sdks
1import { defineConfig } from "vite";
2import react from "@vitejs/plugin-react";
3import deno from "@deno/vite-plugin";
4
5// https://vite.dev/config/
6export default defineConfig({
7 plugins: [react({ babel: { plugins: ["relay"] } }), deno()],
8 optimizeDeps: {
9 exclude: ["@slices/lexicon"],
10 },
11 server: {
12 fs: {
13 // Allow serving files from the packages directory
14 allow: [".."],
15 },
16 },
17});