Created
October 27, 2015 20:18
-
-
Save j6s/aa6fa1b6473163a195ec 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
| var connect = require('connect'); | |
| var serveStatic = require('serve-static'); | |
| var less = require('less-middleware'); | |
| var app = connect(); | |
| app.use(less(__dirname)) | |
| app.use(serveStatic(__dirname)); | |
| app.listen(8090); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment