Created
October 17, 2016 17:14
-
-
Save AlanWarren/1bd54771dbafc698f15899953b8f03f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This shows a full config file! | |
module.exports = function (grunt) { | |
grunt.initConfig({ | |
browserSync: { | |
dev: { | |
bsFiles: { | |
src : [ | |
'css/*.css', | |
'*.html' | |
] | |
}, | |
options: { | |
server: './' | |
} | |
} | |
} | |
}); | |
// load npm tasks | |
grunt.loadNpmTasks('grunt-browser-sync'); | |
// define default task | |
grunt.registerTask('default', ['browserSync']); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment