3eca0be184
Parcel has been removed since we didn't need it anymore (Tailwind does the purging by itself anyway). Instead, we've told Express to serve all static assets from src/assets/ and use twig templates from src/ directly. Meanwhile, Nodemon now watches for changes in .css and .twig files too!
14 lines
374 B
JavaScript
14 lines
374 B
JavaScript
module.exports = {
|
|
mode: "jit",
|
|
content: ["./src/*.htm.twig"],
|
|
darkMode: 'media',
|
|
theme: {
|
|
fontFamily: {
|
|
'serif': [ 'Fanwood', 'Fanwood Text', 'Crimson Text', 'Crimson Pro', 'Georgia', 'ui-serif', ],
|
|
'heading': [ 'Abhaya Libre', 'ui-serif' ],
|
|
'sans': [ 'Didact Gothic', 'Open Sans', 'sans-serif' ],
|
|
},
|
|
},
|
|
variants: {},
|
|
plugins: [],
|
|
}
|