mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-03 07:04:16 +00:00
53 lines
1.1 KiB
TypeScript
53 lines
1.1 KiB
TypeScript
![]() |
import type { GatsbyConfig } from "gatsby";
|
||
|
|
||
|
require("dotenv").config({
|
||
|
path: `.env.${process.env.NODE_ENV}`,
|
||
|
});
|
||
|
|
||
|
const config: GatsbyConfig = {
|
||
|
pathPrefix: `${process.env.PREFIX_PATH_VALUE}`,
|
||
|
siteMetadata: {
|
||
|
title: `AutoGen Assistant`,
|
||
|
description: `Build LLM Enabled Agents`,
|
||
|
siteUrl: `http://tbd.place`,
|
||
|
},
|
||
|
flags: {
|
||
|
LAZY_IMAGES: true,
|
||
|
FAST_DEV: true,
|
||
|
DEV_SSR: false,
|
||
|
},
|
||
|
plugins: [
|
||
|
"gatsby-plugin-sass",
|
||
|
"gatsby-plugin-image",
|
||
|
"gatsby-plugin-sitemap",
|
||
|
"gatsby-plugin-postcss",
|
||
|
{
|
||
|
resolve: "gatsby-plugin-manifest",
|
||
|
options: {
|
||
|
icon: "src/images/icon.png",
|
||
|
},
|
||
|
},
|
||
|
"gatsby-plugin-mdx",
|
||
|
"gatsby-plugin-sharp",
|
||
|
"gatsby-transformer-sharp",
|
||
|
{
|
||
|
resolve: "gatsby-source-filesystem",
|
||
|
options: {
|
||
|
name: "images",
|
||
|
path: "./src/images/",
|
||
|
},
|
||
|
__key: "images",
|
||
|
},
|
||
|
{
|
||
|
resolve: "gatsby-source-filesystem",
|
||
|
options: {
|
||
|
name: "pages",
|
||
|
path: "./src/pages/",
|
||
|
},
|
||
|
__key: "pages",
|
||
|
},
|
||
|
],
|
||
|
};
|
||
|
|
||
|
export default config;
|