Layout von Websiten mit Bootstrap und Foundation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.yml 936B

123456789101112131415161718192021222324252627282930
  1. # Your project's server will run on localhost:xxxx at this port
  2. PORT: 8000
  3. # UnCSS will use these settings
  4. UNCSS_OPTIONS:
  5. html:
  6. # Search for used CSS classes in generated HTML files
  7. - "dist/**/*.html"
  8. ignore:
  9. - !!js/regexp .foundation-mq
  10. - !!js/regexp ^\.is-.*
  11. # Gulp will reference these paths when it copies files
  12. PATHS:
  13. # Path to dist folder
  14. dist: "dist"
  15. # Paths to static assets that aren't images, CSS, or JavaScript
  16. assets:
  17. - "src/assets/**/*"
  18. - "node_modules/@fortawesome/fontawesome-free/webfonts"
  19. - "!src/assets/{img,js,scss}/**/*"
  20. # Paths to Sass libraries, which can then be loaded with @import
  21. sass:
  22. - "node_modules/foundation-sites/scss"
  23. - "node_modules/motion-ui/src"
  24. - "node_modules/@fortawesome/fontawesome-free/scss"
  25. - "src/assets/scss/components"
  26. # Paths to JavaScript entry points for webpack to bundle modules
  27. entries:
  28. - "src/assets/js/app.js"