adding more examples

This commit is contained in:
2023-08-26 19:23:15 +02:00
parent 425afcde83
commit 00e4bfcdac
2 changed files with 103 additions and 103 deletions

View File

@ -1,20 +1,16 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
safelist: [
{
pattern: /hljs+/,
},
],
safelist: [{
pattern: /hljs+/,
}],
theme: {
extend: {},
hljs: {
theme: 'nord',
theme: "rainbow",
},
},
plugins: [require('tailwind-highlightjs')],
}
plugins: [require("tailwind-highlightjs")],
};