-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
53 lines (51 loc) · 1.59 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
const withCss = require('@zeit/next-css');
const withImages = require('next-images');
const antdLessLoader = require("next-antd-aza-less");
const theme = require('./theme');
const package = require('./package');
// if (typeof require !== 'undefined') {
// require.extensions['.css'] = () => {};
// }
// if (typeof require !== 'undefined') {
// require.extensions['.less'] = () => {};
// }
module.exports = withImages(withCss((antdLessLoader({
cssModules: true,
cssLoaderOptions: {
importLoaders: 1,
localIdentName: "[local]___[hash:base64:5]",
},
lessLoaderOptions: {
javascriptEnabled: true,
modifyVars: theme
},
// 我们可以通过next的这个方法把全局的一些变量传到我们的代码里面
publicRuntimeConfig: {
APP_ENV: process.env.APP_ENV,
NODE_ENV: process.env.NODE_ENV,
VERSION: package.version,
},
webpack: (config, { isServer }) => {
if (isServer) {
// const antStyles = /antd-mobile\/.*?\/style.*?/ // 移动端
const antStyles = /antd\/.*?\/style.*?/ // pc端
const origExternals = [...config.externals]
config.externals = [
(context, request, callback) => {
if (request.match(antStyles)) return callback()
if (typeof origExternals[0] === 'function') {
origExternals[0](context, request, callback)
} else {
callback()
}
},
...(typeof origExternals[0] === 'function' ? [] : origExternals)
]
config.module.rules.unshift({
test: antStyles,
use: 'null-loader'
})
}
return config
}
}))));