mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00

- adapt wireframes with responsive design - refactor models methods to cache requests for faster queries - update public controllers to cache pages while retaining analytics hits - add platform links to podcast page - add previous / next episodes in episode page - update npm packages to latest versions closes #30, #13
16 lines
322 B
JavaScript
16 lines
322 B
JavaScript
/* eslint-disable */
|
|
|
|
module.exports = {
|
|
purge: ["./app/Views/**/*.php", "./app/Views/**/*.ts"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
variants: {
|
|
textDecoration: ["responsive", "hover", "focus", "group-hover"],
|
|
},
|
|
plugins: [
|
|
require("@tailwindcss/custom-forms"),
|
|
require("@tailwindcss/typography"),
|
|
],
|
|
};
|