Files
spring-net/website/gatsby-config.ts
Marko Lahma 909481644d Add website (#234)
* Add website

* update packages

* remove references to obsolete services

* build reference documentation

* tweaks

* new tweaks
2023-12-16 11:08:23 +02:00

45 lines
1.0 KiB
TypeScript

import type { GatsbyConfig } from "gatsby";
const config: GatsbyConfig = {
siteMetadata: {
title: `Spring.NET`,
description: `Spring.NET is a port and extension of the Java based Spring Framework for .NET.`,
keywords: `.NET, C#, Framework, Application, Framework, web, Spring, open source`,
image: ``,
siteUrl: `http://www.springframework.org`,
},
plugins: [
"gatsby-plugin-sass",
"gatsby-plugin-image",
"gatsby-plugin-react-helmet",
"gatsby-plugin-sitemap",
{
resolve: "gatsby-plugin-manifest",
options: {
icon: "src/images/icon.svg",
},
},
"gatsby-transformer-remark",
"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;