c3cf230104
- Removed conditional rendering for the assistant guide bar. - Simplified strategy overview and strategy list item components. - Introduced a new modal for selecting strategy mode. - Enhanced strategy creation modal to support script strategies with a dedicated editor. - Updated form handling for script strategies, including validation and submission logic. - Improved user experience with better messaging and streamlined UI components. - Updated translations for better clarity in Chinese.
31 lines
670 B
JavaScript
31 lines
670 B
JavaScript
const IS_PROD = ['production', 'prod'].includes(process.env.NODE_ENV)
|
|
const IS_PREVIEW = process.env.VUE_APP_PREVIEW === 'true'
|
|
|
|
const plugins = []
|
|
if (IS_PROD && !IS_PREVIEW) {
|
|
// Plugin used to strip logs
|
|
plugins.push('transform-remove-console')
|
|
}
|
|
|
|
// lazy load ant-design-vue
|
|
// if your use import on Demand, Use this code
|
|
plugins.push(['import', {
|
|
'libraryName': 'ant-design-vue',
|
|
'libraryDirectory': 'es',
|
|
'style': true // `style: true` loads the LESS files
|
|
}])
|
|
|
|
module.exports = {
|
|
presets: [
|
|
'@vue/cli-plugin-babel/preset',
|
|
[
|
|
'@babel/preset-env',
|
|
{
|
|
'useBuiltIns': 'entry',
|
|
'corejs': 3
|
|
}
|
|
]
|
|
],
|
|
plugins
|
|
}
|