Skip to content

Commit

Permalink
Fix AutoGen Studio pathPrefix error on Windows (#3406)
Browse files Browse the repository at this point in the history
Co-authored-by: linuxYn <[email protected]>
  • Loading branch information
New-World-2019 and linuxYn authored Aug 28, 2024
1 parent 4f9383a commit 2e77d3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/apps/autogen-studio/frontend/gatsby-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ require("dotenv").config({
});

const config: GatsbyConfig = {
pathPrefix: `${process.env.PREFIX_PATH_VALUE}`,
pathPrefix: process.env.PREFIX_PATH_VALUE || '',
siteMetadata: {
title: `AutoGen Studio [Beta]`,
description: `Build Multi-Agent Apps`,
Expand Down

0 comments on commit 2e77d3b

Please sign in to comment.