Implement standalone FromChat Protocol

This commit is contained in:
2025-12-04 23:14:01 +03:00
Unverified
parent 96cba60804
commit cc29d2d546
27 changed files with 592 additions and 120 deletions
+3 -1
View File
@@ -70,7 +70,8 @@ export default defineConfig({
plugins: plugins,
resolve: {
alias: {
"@": path.resolve(__dirname, "./src")
"@": path.resolve(__dirname, "./src"),
"@fromchat/protocol": path.resolve(__dirname, "./packages/fromchat-protocol/src/index.ts")
}
},
server: {
@@ -89,6 +90,7 @@ export default defineConfig({
},
appType: "spa",
optimizeDeps: {
exclude: ["@fromchat/protocol"],
esbuildOptions: {
target: "es2022"
}