-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathnext.config.js
42 lines (38 loc) · 1.14 KB
/
next.config.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
const withSass = require('@zeit/next-sass');
const withCSS = require('@zeit/next-css');
const withImages = require('next-images');
module.exports = withImages(
withCSS(
withSass({
cssLoaderOptions: {
url: false,
},
webpack(config, options) {
config.module.rules.push({
test: /\.(png|jpg|gif|svg|eot|ttf|woff|woff2)$/,
use: {
loader: 'url-loader',
options: {
limit: 100000,
},
},
});
config.module.rules.push({
test: /\.json$/,
use: {
loader: 'json-loader',
options: {
limit: 100000,
},
},
});
if (!options.isServer) {
config.node = {
fs: 'empty',
};
}
return config;
},
})
)
);