Guest User

Untitled

a guest
May 24th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. const less = {
  2. all: {
  3. options: {
  4. syncImport: true,
  5. relativeUrls: true,
  6. compress: true,
  7. urlArgs: 'v=1.2.1' //force refresh image
  8. },
  9. plugins: [
  10. new LessPluginCleanCss({
  11. level: 2
  12. }),
  13. new LessPluginAutoprefix({
  14. browsers: [
  15. 'not ie < 10'
  16. ]
  17. })
  18. ],
  19. files: {
  20. '../web/css/base.css': join(srcPath, 'base.less')
  21. }
  22. }
  23. }
Add Comment
Please, Sign In to add comment