[docs][m]: Set up base nextjs project

This commit is contained in:
Rising Odegua
2021-05-19 09:40:18 +01:00
parent 883767cd55
commit 1e2a76571e
14 changed files with 3375 additions and 0 deletions

22
docs/tailwind.config.js Normal file
View File

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