mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: config 不是 json 格式导致 dev 退出
This commit is contained in:
parent
b8878c3c24
commit
b227817159
@ -117,7 +117,11 @@ const genRoutes = function (parentRoutes, path, parentRoutePath) {
|
|||||||
if (ext === '.vue') {
|
if (ext === '.vue') {
|
||||||
const { descriptor } = parse(content);
|
const { descriptor } = parse(content);
|
||||||
const routeMetaBlock = descriptor.customBlocks.find((b) => b.type === 'config');
|
const routeMetaBlock = descriptor.customBlocks.find((b) => b.type === 'config');
|
||||||
routeMeta = routeMetaBlock?.content ? JSON.parse(routeMetaBlock.content) : {};
|
try {
|
||||||
|
routeMeta = routeMetaBlock?.content ? JSON.parse(routeMetaBlock.content) : {};
|
||||||
|
} catch (e) {
|
||||||
|
console.warn(`config: ${routeMetaBlock.content} 必须为 json 格式`);
|
||||||
|
}
|
||||||
if (descriptor.script) {
|
if (descriptor.script) {
|
||||||
routeMeta = getRouteMeta(descriptor.script.content) || routeMeta;
|
routeMeta = getRouteMeta(descriptor.script.content) || routeMeta;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user