forked from adelineliou/VAD-VAR-Workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-node.ts
61 lines (53 loc) · 1.46 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
51
52
53
54
55
56
57
58
59
60
61
import { createFilePath } from 'gatsby-source-filesystem';
import { GatsbyNode } from 'gatsby';
const DEFAULT_LOCALE = 'en';
const onCreateWebpackConfig: GatsbyNode['onCreateWebpackConfig'] = ({ actions }) => {
actions.setWebpackConfig({
resolve: {
alias: {
sharp$: false,
'onnxruntime-node$': false
}
},
module: {
rules: [
{
test: /\.wasm$/,
type: 'webassembly/async'
}
]
},
experiments: {
asyncWebAssembly: true
}
});
};
const onCreateNode: GatsbyNode['onCreateNode'] = ({ node, getNode, actions }) => {
const { createNodeField } = actions;
if (node.internal.type === 'Mdx') {
const relativeFilePath = createFilePath({
node,
getNode,
basePath: './content',
trailingSlash: false
});
const splitPath = relativeFilePath.toLowerCase().split('/');
const splitFileName = splitPath[splitPath.length - 1].split('.');
if (splitFileName.length === 1) {
splitPath.splice(0, 0, DEFAULT_LOCALE);
} else {
splitPath.splice(0, 0, splitFileName[splitFileName.length - 1]);
splitPath[splitPath.length - 1] = splitFileName[splitFileName.length - 2];
}
const cleanPath: string = splitPath
.filter((s) => !!s && s !== 'readme')
.join('/')
.replaceAll('_', '-');
createNodeField({
node,
name: 'slug',
value: cleanPath
});
}
};
export { onCreateNode, onCreateWebpackConfig };