mango-ui-v2/next.config.js

14 lines
267 B
JavaScript
Raw Normal View History

2021-04-02 11:26:21 -07:00
const withAntdLess = require('next-plugin-antd-less')
module.exports = withAntdLess({
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
})