Skip to content
Snippets Groups Projects
Select Git revision
  • 6688712d9f25487f6db2dc2dd2cdfd25a4e2f23f
  • main default protected
  • OZG-8447-FehlerhafteDateidarstellung
  • release
  • ClamAvNameSpaceHotFix
  • OZG-8252-gitlab-pipelines
  • OZG-7856_schadcode_scanner
  • develop
  • OZG-4097-OSI2-Anbindung
  • OZG-7689_use-new-pm
  • fix-dependencies
  • CommandRepositoryRefactoring
  • OZG-5580-torsten-test-20240902
  • OZG-5580-Configure-To-Connect-To-Zufi
  • fix-keycloak-metadata
  • ozg-3938-disable-grpc-tls
  • OZG-4906
  • 2.29.1
  • 2.29.0
  • 2.28.0
  • 2.27.0
  • 2.26.0
  • 2.25.0
  • 2.24.2
  • 2.24.1
  • 2.24.0
  • 2.23.0
  • 2.22.0
  • 2.21.0
  • 2.20.0
  • 2.19.0
  • 2.18.0
  • 2.17.1
  • 2.17.0
  • 2.16.1
  • 2.16.0
  • 2.15.0
37 results

Jenkinsfile

Blame
  • tailwind.config.js 479 B
    const { createGlobPatternsForDependencies } = require('@nx/angular/tailwind');
    const { join } = require('path');
    const sharedTailwindConfig = require('../../libs/design-system/tailwind.config.js');
    
    /** @type {import('tailwindcss').Config} */
    module.exports = {
      presets: [sharedTailwindConfig],
      content: [
        join(__dirname, 'src/**/!(*.stories|*.spec).{ts,html}'),
        ...createGlobPatternsForDependencies(__dirname),
      ],
      theme: {
        extend: {},
      },
      plugins: [],
    };