-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgatsby-node.ts
50 lines (44 loc) · 1.94 KB
/
gatsby-node.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import { GatsbyNode } from 'gatsby';
import { customizeSitePageContext } from './src/createSchemaCustomization/customizeSitePageContext';
import { translateNode } from './src/onCreateNode/translateNode';
import { translatePage } from './src/onCreatePage/translatePage';
import { sourceTranslationNodes } from './src/sourceNodes/sourceTranslationNodes';
export const pluginOptionsSchema: GatsbyNode['pluginOptionsSchema'] = ({ Joi }) => {
return Joi.object({
defaultLocale: Joi.string().description('Sets the default locale'),
siteUrl: Joi.string().required().description('Sets the absolute site url'),
locales: Joi.array()
.required()
.items(
Joi.object({
locale: Joi.string().required().description('Defines the a locale.'),
prefix: Joi.string().required().description('Defines the corresponding url prefix.'),
slugs: Joi.object().required().description('Contains the translated slugs.'),
messages: Joi.object().required().description('Contains the translated messages.'),
}),
),
pathBlacklist: Joi.array().description('Omit certain path segments'),
trailingSlash: Joi.string().valid('always', 'never', 'ignore').default('always'),
});
};
export const onCreateNode: GatsbyNode['onCreateNode'] = async (args, options) => {
await translateNode(args, options);
};
export const onCreatePage: GatsbyNode['onCreatePage'] = async (args, options) => {
await translatePage(args, options);
};
export const createSchemaCustomization: GatsbyNode['createSchemaCustomization'] = async (args) => {
customizeSitePageContext(args);
};
export const sourceNodes: GatsbyNode['sourceNodes'] = async (args, options) => {
sourceTranslationNodes(args, options);
};
export const onCreateWebpackConfig: GatsbyNode['onCreateWebpackConfig'] = async ({ actions }) => {
actions.setWebpackConfig({
resolve: {
fallback: {
path: require.resolve('path-browserify'),
},
},
});
};