aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/with-gatsby/apps/web/gatsby-config.ts
blob: 4bf467b5e794890c724a44a5fc74604e644800fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import type { GatsbyConfig } from "gatsby";

const config: GatsbyConfig = {
  siteMetadata: {
    siteUrl: `https://www.yourdomain.tld`,
  },
  graphqlTypegen: true,
  plugins: [
    `gatsby-plugin-pnpm`,
    {
      resolve: `gatsby-plugin-compile-es6-packages`,
      options: {
        modules: [`ui`],
      },
    },
  ],
};

export default config;