-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-node.js
42 lines (42 loc) · 1.05 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
exports.onCreateWebpackConfig = ({
stage,
rules,
loaders,
plugins,
actions,
}) => {
actions.setWebpackConfig({
module: {
rules: [
{
test: /\.less$/,
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
loaders.miniCssExtract(),
loaders.css({ importLoaders: 1 }),
// the postcss loader comes with some nice defaults
// including autoprefixer for our configured browsers
loaders.postcss(),
`less-loader`,
],
},
{
test: /\.csv$/,
loader: "csv-loader",
options: {
dynamicTyping: true,
header: true,
skipEmptyLines: true,
},
},
],
},
plugins: [
plugins.define({
__DEVELOPMENT__: stage === `develop` || stage === `develop-html`,
}),
],
})
}