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.

21 lines
504 B

  1. /*******************************
  2. Default Paths
  3. *******************************/
  4. module.exports = {
  5. base : '',
  6. paths: {
  7. source: {
  8. config : 'src/theme.config',
  9. definitions : 'src/definitions/',
  10. site : 'src/site/',
  11. themes : 'src/themes/'
  12. },
  13. output: {
  14. packaged : 'dist/',
  15. uncompressed : 'dist/components/',
  16. compressed : 'dist/components/',
  17. themes : 'dist/themes/'
  18. },
  19. clean : 'dist/'
  20. }
  21. };