Skip to content
Snippets Groups Projects
Forked from Ad Aures / Castopod
1062 commits behind the upstream repository.
  • Yassine Doghri's avatar
    7fb1de2c
    feat: add breadcrumb in admin area · 7fb1de2c
    Yassine Doghri authored
    - add Breadcrumb library and service
    - update authorizations
    - add missing routes to avoid 404 links in breadcrumb
    - add svg_helper globally in base controller
    - update purgecss config to check .ts files
    
    closes #17
    7fb1de2c
    History
    feat: add breadcrumb in admin area
    Yassine Doghri authored
    - add Breadcrumb library and service
    - update authorizations
    - add missing routes to avoid 404 links in breadcrumb
    - add svg_helper globally in base controller
    - update purgecss config to check .ts files
    
    closes #17
tailwind.config.js 250 B
/* eslint-disable */

module.exports = {
  purge: ["./app/Views/**/*.php", "./app/Views/**/*.ts"],
  theme: {
    extend: {},
  },
  variants: {},
  plugins: [
    require("@tailwindcss/custom-forms"),
    require("@tailwindcss/typography"),
  ],
};