[Data literate][m]: Copy and refactor data-literate into minimal template folder

This commit is contained in:
Rising Odegua
2022-03-14 12:55:51 +01:00
parent 603ae2c7b3
commit 86eb6c2744
20 changed files with 51890 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
// purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
content: [
"./pages/**/*.js",
"./pages/**/*.ts",
"./pages/**/*.jsx",
"./pages/**/*.tsx",
"./components/**/*.js",
"./components/**/*.ts",
"./components/**/*.jsx",
"./components/**/*.tsx"
],
darkMode: false, // or 'media' or 'class'
theme: {
container: {
center: true,
},
extend: {
fontFamily: {
mono: ["Inconsolata", ...defaultTheme.fontFamily.mono]
}
},
},
plugins: [
require('@tailwindcss/typography'),
],
}