15 lines
365 B
JavaScript
15 lines
365 B
JavaScript
module.exports = {
|
|
purge: ['./src/**/*.html', './src/**/*.vue', './src/**/*.js', './src/**/*.postcss'],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
body: ['Libre Baskerville', 'Georgia', 'Cambria', 'Times New Roman', 'Times', 'serif'],
|
|
maintitle: ['Philosopher', 'serif'],
|
|
},
|
|
fontSize: {
|
|
'7xl': '5rem',
|
|
},
|
|
},
|
|
},
|
|
}
|