@standardagents/builder 0.9.4 → 0.9.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/assets/index.css +1 -1
- package/dist/client/index.js +19 -19
- package/dist/client/vendor.js +1 -1
- package/dist/client/vue.js +35 -1
- package/dist/index.js +11 -6
- package/dist/index.js.map +1 -1
- package/dist/plugin.js +11 -6
- package/dist/plugin.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5851,14 +5851,19 @@ function agentbuilder(options = {}) {
|
|
|
5851
5851
|
config() {
|
|
5852
5852
|
return {
|
|
5853
5853
|
optimizeDeps: {
|
|
5854
|
-
// Pre-bundle these deps to prevent
|
|
5855
|
-
|
|
5856
|
-
//
|
|
5857
|
-
//
|
|
5858
|
-
|
|
5859
|
-
"
|
|
5854
|
+
// Pre-bundle these deps upfront to prevent "new version of pre-bundle" errors
|
|
5855
|
+
// during first startup when node_modules/.vite cache is empty.
|
|
5856
|
+
// These are discovered dynamically by the virtual modules, so we need to
|
|
5857
|
+
// tell Vite about them ahead of time.
|
|
5858
|
+
include: [
|
|
5859
|
+
"openai",
|
|
5860
|
+
"zod",
|
|
5860
5861
|
"@standardagents/builder/runtime",
|
|
5861
5862
|
"@standardagents/builder/built-in-routes"
|
|
5863
|
+
],
|
|
5864
|
+
// Exclude MCP as it's not used in the main app
|
|
5865
|
+
exclude: [
|
|
5866
|
+
"@standardagents/builder/mcp"
|
|
5862
5867
|
]
|
|
5863
5868
|
},
|
|
5864
5869
|
ssr: {
|