Skip to content
Snippets Groups Projects
Forked from Ad Aures / Castopod
785 commits behind the upstream repository.
  • Yassine Doghri's avatar
    c0e66d5f
    feat: enhance ui using javascript in admin area · c0e66d5f
    Yassine Doghri authored
    - bundle js using parcel
    - add markdown editor, html editor, dropdown and tooltip features using third-party packages
    - integrate optimized inline svg icons from RemixIcon using svgo and a php helper
    - add scripts in package.json to bundle icons, images, css and js
    - update tailwind config to add purgecss lookups and typography plugin
    - refactor views to add missing pages in user journey
    - update admin's holy grail layout using css grid
    c0e66d5f
    History
    feat: enhance ui using javascript in admin area
    Yassine Doghri authored
    - bundle js using parcel
    - add markdown editor, html editor, dropdown and tooltip features using third-party packages
    - integrate optimized inline svg icons from RemixIcon using svgo and a php helper
    - add scripts in package.json to bundle icons, images, css and js
    - update tailwind config to add purgecss lookups and typography plugin
    - refactor views to add missing pages in user journey
    - update admin's holy grail layout using css grid
postcss.config.js 325 B
/* eslint-disable */

module.exports = {
  plugins: [
    require("postcss-import"),
    require("tailwindcss"),
    require("postcss-preset-env")({ stage: 1 }),
    ...(process.env.NODE_ENV === "production"
      ? [
          require("cssnano")({
            preset: "default",
          }),
        ]
      : []),
  ],
};