2021-04-02 11:26:21 -07:00
|
|
|
const withAntdLess = require('next-plugin-antd-less')
|
|
|
|
|
|
|
|
module.exports = withAntdLess({
|
2021-04-13 12:48:36 -07:00
|
|
|
target: 'serverless',
|
2021-04-02 11:26:21 -07:00
|
|
|
lessVarsFilePath: './styles/theme.less',
|
2021-03-30 15:47:08 -07:00
|
|
|
webpack(config) {
|
|
|
|
config.module.rules.push({
|
|
|
|
test: /\.svg$/,
|
|
|
|
use: ['@svgr/webpack'],
|
|
|
|
})
|
|
|
|
|
|
|
|
return config
|
|
|
|
},
|
2021-04-02 11:26:21 -07:00
|
|
|
})
|