We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef31594 commit a5b631aCopy full SHA for a5b631a
Gruntfile.js
@@ -24,8 +24,13 @@ module.exports = function(grunt) {
24
server: {
25
options: {
26
hostname: '*',
27
- directory: '.',
28
- keepalive: true
+ keepalive: true,
+ middleware: function(connect, options) {
29
+ return [
30
+ connect.static(options.base),
31
+ connect.directory(options.base)
32
+ ];
33
+ }
34
}
35
36
0 commit comments