- 添加ruoyi-generator模块:代码生成器,支持自动生成CRUD代码和Vue页面 - 添加ruoyi-quartz模块:定时任务管理,基于Quartz实现任务调度 - 添加ruoyi-ui模块:Vue前端项目,包含完整的管理界面和组件 - 添加sql目录:数据库初始化脚本和Quartz相关表结构 - 暂时排除大尺寸图片文件以解决推送限制问题
13 lines
462 B
JavaScript
Executable File
13 lines
462 B
JavaScript
Executable File
module.exports = {
|
|
presets: [
|
|
// https://github.com/vuejs/vue-cli/tree/master/packages/@vue/babel-preset-app
|
|
'@vue/cli-plugin-babel/preset'
|
|
],
|
|
'env': {
|
|
'development': {
|
|
// babel-plugin-dynamic-import-node plugin only does one thing by converting all import() to require().
|
|
// This plugin can significantly increase the speed of hot updates, when you have a large number of pages.
|
|
'plugins': ['dynamic-import-node']
|
|
}
|
|
}
|
|
} |