fxfast-code/ruoyi-ui/babel.config.js

13 lines
474 B
JavaScript
Raw Normal View History

2019-10-08 01:14:38 +00:00
module.exports = {
presets: [
2020-07-31 14:35:30 +00:00
// https://github.com/vuejs/vue-cli/tree/master/packages/@vue/babel-preset-app
'@vue/cli-plugin-babel/preset'
],
'env': {
2022-06-14 13:26:14 +00:00
'development': {
2020-07-31 14:35:30 +00:00
// 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']
}
}
2022-06-13 13:43:11 +00:00
}