add prismjs

This commit is contained in:
Julien Calixte
2022-12-03 14:23:13 +01:00
parent 4b5fb07860
commit 62b17a3ae0
3 changed files with 50 additions and 36 deletions

View File

@@ -1,6 +1,12 @@
import { defineConfig } from "iles";
import { defineConfig } from "iles"
import prism from "@islands/prism"
export default defineConfig({
siteUrl: "https://juliencalixte.eu",
modules: ["@islands/headings"],
});
modules: [
"@islands/headings",
prism({
showLineNumbers: true,
}),
],
})