You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
474 B
JavaScript

1 year ago
module.exports = {
3 weeks ago
presets: [// https://github.com/vuejs/vue-cli/tree/master/packages/@vue/babel-preset-app
3 weeks ago
'@vue/cli-plugin-babel/preset', "@babel/preset-env"], 'env': {
1 year ago
'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.
3 weeks ago
'plugins': ['dynamic-import-node']
1 year ago
}
}
}