10 lines
247 B
JavaScript
Raw Normal View History

2020-05-16 21:24:51 +08:00
const babelPluginTransformVueJsx = require('./babel-plugin-transform-vue-jsx');
2020-05-17 16:36:38 +08:00
const babelSugarFragment = require('./babel-sugar-fragment');
2020-05-13 19:14:28 +08:00
module.exports = () => ({
2020-05-16 21:24:51 +08:00
plugins: [
babelPluginTransformVueJsx,
2020-05-17 16:36:38 +08:00
babelSugarFragment,
2020-05-16 21:24:51 +08:00
],
2020-05-13 19:14:28 +08:00
});