Compare commits
2 Commits
3c266df7db
...
8618bef364
Author | SHA1 | Date |
---|---|---|
David E. Perez Negron R. | 8618bef364 | |
David E. Perez Negron R. | 15b77d1996 |
|
@ -1,2 +1,3 @@
|
|||
_site
|
||||
_cache
|
||||
deno.lock
|
||||
|
|
|
@ -1,8 +1,13 @@
|
|||
import lume from "lume/mod.ts";
|
||||
import wiki from "wiki/mod.ts";
|
||||
import relativeUrls from "lume/plugins/relative_urls.ts";
|
||||
|
||||
const site = lume();
|
||||
|
||||
const site = lume({
|
||||
location: new URL("https://dev.decentralizedscience.org"),
|
||||
});
|
||||
|
||||
site.use(relativeUrls());
|
||||
site.use(wiki());
|
||||
|
||||
export default site;
|
||||
|
|
Loading…
Reference in New Issue