feat: 添加 bable-pulugin-import 配置

This commit is contained in:
bac-joker 2021-01-24 17:39:18 +08:00
parent 0e4c377a3e
commit d7a7a20d5b
4 changed files with 25 additions and 3 deletions

View File

@ -36,6 +36,7 @@
"html-webpack-plugin": "^3.2.0",
"html-webpack-tags-plugin": "2.0.17",
"vue-loader": "^16.1.2",
"webpack-bundle-analyzer": "4.3.0"
"webpack-bundle-analyzer": "4.3.0",
"babel-plugin-import": "1.13.3"
}
}

View File

@ -15,6 +15,7 @@ export default function () {
require.resolve('./plugins/features/analyze'),
require.resolve('./plugins/features/autoprefixer'),
require.resolve('./plugins/features/base'),
require.resolve('./plugins/features/babelPluginImport'),
require.resolve('./plugins/features/chainWebpack'),
require.resolve('./plugins/features/chunks'),
require.resolve('./plugins/features/cssLoader'),

View File

@ -0,0 +1,20 @@
export default (api) => {
api.describe({
key: 'babelPluginImport',
config: {
schema(joi) {
return joi.array();
}
}
});
api.modifyBabelOpts((babelOpts) => {
if (api.config.babelPluginImport) {
api.config.babelPluginImport.forEach((config) => {
babelOpts.plugins.push(['import', config]);
});
}
return babelOpts;
});
};

View File

@ -101,7 +101,7 @@ const genRoutes = function (parentRoutes, path, parentRoutePath, config) {
path: routePath,
component: componentPath,
name: routeName,
meta: routeMetaBlock.content ? JSON.parse(routeMetaBlock.content) : {}
meta: routeMetaBlock?.content ? JSON.parse(routeMetaBlock.content) : {}
});
}
} else {
@ -109,7 +109,7 @@ const genRoutes = function (parentRoutes, path, parentRoutePath, config) {
path: routePath,
component: componentPath,
name: routeName,
meta: routeMetaBlock.content ? JSON.parse(routeMetaBlock.content) : {}
meta: routeMetaBlock?.content ? JSON.parse(routeMetaBlock.content) : {}
});
}
}