forked from terpnetwork/terp-website
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-node.js
28 lines (28 loc) · 976 Bytes
/
gatsby-node.js
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
exports.onCreateWebpackConfig = ({
stage,
rules,
loaders,
plugins,
actions,
}) => {
actions.setWebpackConfig({
module: {
rules: [
{
test: /\.mov$/,
use: [
// You don't need to add the matching ExtractText plugin
// because gatsby already includes it and makes sure it's only
// run at the appropriate stages, e.g. not in development
`file-loader`,
],
},
],
},
plugins: [
plugins.define({
__DEVELOPMENT__: stage === `develop` || stage === `develop-html`,
}),
],
})
}