Gruntfile.proxy.js 739 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /**
  2. *
  3. * Install:
  4. * npm install grunt grunt-browser-sync
  5. *
  6. * Run:
  7. * grunt
  8. *
  9. * This example will wrap your existing vhost in a proxy URL
  10. * Use the proxy URL to view your site.
  11. *
  12. */
  13. module.exports = function (grunt) {
  14. grunt.initConfig({
  15. // BrowserSync Task
  16. browserSync: {
  17. default_options: {
  18. bsFiles: {
  19. src: [
  20. "css/*.css",
  21. "*.html"
  22. ]
  23. },
  24. options: {
  25. proxy: "localphpsite.dev"
  26. }
  27. }
  28. }
  29. });
  30. grunt.loadNpmTasks("grunt-browser-sync");
  31. grunt.registerTask("default", ["browserSync"]);
  32. };