Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
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.
 
 
 
 
 
 

18 lines
459 B

  1. let mix = require('laravel-mix');
  2. require('mix-tailwindcss');
  3. const extension = mix.inProduction() ? '.min' : '';
  4. mix.js('js/main.js', `js/main${extension}.js`)
  5. .css('css/site.css', `css/site${extension}.css`)
  6. .tailwind()
  7. .setPublicPath('dist')
  8. .version()
  9. // .browserSync({
  10. // proxy: 'http://domain.test',
  11. // files: [
  12. // './dist/mix-manifest.json',
  13. // '../../pages/**/*.md'
  14. // ]
  15. // })