We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23bb30a commit 5bb3843Copy full SHA for 5bb3843
1 file changed
app.coffee
@@ -7,9 +7,9 @@ view = require './src/view'
7
path = require 'path'
8
9
app.configure 'production', () ->
10
- app.use(express.logger({format: ':method :url'}))
11
- app.use(express.static(path.join(__dirname, 'src/public')))
12
- app.use(stylus.middleware({src: path.join(__dirname, 'src/public')}))
+ app.use(express.logger({format: ':method :url'}))
+ app.use(express.static(path.join(__dirname, 'src/public')))
+ app.use(stylus.middleware({src: path.join(__dirname, 'src/public')}))
13
14
app.set 'views', path.join(__dirname, '/src/views')
15
app.set 'view engine', 'jade'
0 commit comments