mango-ui-v2/next.config.js

15 lines
291 B
JavaScript
Raw Normal View History

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',
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ['@svgr/webpack'],
})
return config
},
2021-04-02 11:26:21 -07:00
})