Skip to content
Snippets Groups Projects
Select Git revision
  • 856f1d656f465b65941049647cb6d7bcf9e7e6eb
  • master default protected
  • forbid-save-as
  • upload-via-token
  • moodle-integration
  • patch-double-tap-seek
  • patch_datum_anzeigen
  • patch_raum_anzeigen
  • intros
  • live_sources
  • bootstrap4
  • modules
12 results

chapters.py

Blame
  • Forked from Video AG Infrastruktur / website
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    postcss.config.cjs 313 B
    const tailwindcss = require("tailwindcss");
    const autoprefixer = require("autoprefixer");
    
    const config = {
    	plugins: [
    		//Some plugins, like tailwindcss/nesting, need to run before Tailwind,
    		tailwindcss(),
    		//But others, like autoprefixer, need to run after,
    		autoprefixer,
    	],
    };
    
    module.exports = config;