-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
71 lines (65 loc) · 1.76 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
const withCSS = require('@zeit/next-css')
const withStylus = require('@zeit/next-stylus')
const postcss = require('poststylus')
const autoprefixer = require('autoprefixer')
const comments = require('postcss-discard-comments')
const rupture = require('rupture')
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
})
module.exports = withBundleAnalyzer(
withCSS(
withStylus({
stylusLoaderOptions: {
use: [
rupture(),
postcss([
autoprefixer(),
'rucksack-css',
comments({ removeAll: true })
])
]
},
mode: 'production',
webpack: (config, { defaultLoaders, isServer }) => {
resolve = {
mainFields: ['module', 'browser', 'main']
}
config.module.rules.push({
test: /\.mjs$/,
type: "javascript/auto"
})
config.module.rules.push({
test: /\.(eot|woff|woff2|ttf|webp|txt|jpg|png|jpeg|svg|gif)$/,
use: [
{
loader: "file-loader",
options: {
context: "",
outputPath: "static",
publicPath: "/_next/static",
name: "[path][name].[hash].[ext]"
}
}
]
})
return config
},
})
)
)
// module.exports = withCss({
// webpack(config, options) {
// const { dev } = options
// config.plugins = config.plugins.filter(plugin => {
// return plugin.constructor.name !== 'UglifyJsPlugin';
// });
// if (!dev) {
// // add Babili plugin
// config.plugins.push(
// new BabiliPlugin()
// );
// }
// return config
// }
// });