cc-core-cli
Version:
Command Line Interface tool for generating project templates for the (Your Platform's Name) platform.
26 lines (24 loc) • 528 B
JavaScript
require('dotenv').config()
const nextConfig = {
reactStrictMode: true,
transpilePackages: [
'rc-util',
'@ant-design',
'kitchen-flow-editor',
'@ant-design/pro-editor',
'zustand', 'leva', 'antd',
'rc-pagination',
'rc-tree',
'rc-picker',
'ahooks',
'rc-table'
],
generateBuildId: async () => {
if (process.env.BUILD_ID) {
console.log('Build with build id : ' + process.env.BUILD_ID)
return process.env.BUILD_ID
}
return null
}
}
module.exports = nextConfig