ethers.js/docs.wrm/config.js

29 lines
563 B
JavaScript
Raw Normal View History

2022-12-03 23:13:51 +03:00
import { version } from "../lib.esm/_version.js";
const title = "ethers";
const subtitle = (function(version) {
const dash = version.indexOf("-");
if (dash === -1) { return version; }
return version.substring(dash + 1);
})(version);
2022-12-03 06:56:29 +03:00
export default {
2022-12-03 23:13:51 +03:00
title, subtitle,
logo: "./logo.svg",
prefix: "v6-beta",
2022-12-03 06:56:29 +03:00
srcBaseUrl: "https:/\/github.com/ethers-io/ethers.js/blob/v6-beta-exports/src.ts/{FILENAME}#L{LINENO}",
codeRoot: "../src.ts/index.ts",
links: [
"./links.txt",
],
2022-12-03 23:25:41 +03:00
staticFiles: [
"logo.svg",
"social.jpg"
]
2022-12-03 06:56:29 +03:00
};