13 lines
194 B
JavaScript
13 lines
194 B
JavaScript
export function getPathRobotConfig(e, options) {
|
|
return {
|
|
indexable: true,
|
|
rule: ""
|
|
};
|
|
}
|
|
export function getSiteRobotConfig(e) {
|
|
return {
|
|
indexable: true,
|
|
hints: []
|
|
};
|
|
}
|