When running `grunt server`, I get this error: `Error: ENOENT, no such file or directory 'mobifyjs-2.0\mobifyjs\performance\resources\samplescripts'`. I assume this is because `express` isn't properly using the [`mobifyjs` file](https://github.com/mobify/mobifyjs/blob/e620f321d599c1f014869fa77ecee400c4358dfe/mobifyjs) in the root. I am on running on Windows. --- Using [`connect-modrewrite`](https://www.npmjs.com/package/connect-modrewrite) package or something like it to actually alias fixes the problem: ``` js var modRewrite = require('connect-modrewrite'); app.use(modRewrite([ '^/mobifyjs/(.*) /$1 [L]' ])); ```
When running
grunt server, I get this error:Error: ENOENT, no such file or directory 'mobifyjs-2.0\mobifyjs\performance\resources\samplescripts'.I assume this is because
expressisn't properly using themobifyjsfile in the root.I am on running on Windows.
Using
connect-modrewritepackage or something like it to actually alias fixes the problem: