13 lines
303 B
JavaScript
13 lines
303 B
JavaScript
/* eslint-disable no-undef */
|
|
/* Copyright 2021, Milkdown by Mirone. */
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
|
|
plugins: [require('@tailwindcss/typography')]
|
|
}
|