3
0
mirror of https://github.com/reality/dbot.git synced 2024-12-24 11:42:36 +01:00

Should have fixed public folder path

This commit is contained in:
Luke Slater 2011-11-08 18:59:29 +00:00
parent e0dd59ac7d
commit 851f510973

View File

@ -3,7 +3,7 @@ var express = require('express');
var webInterface = function(dbot) { var webInterface = function(dbot) {
var dbot = dbot; var dbot = dbot;
var pub = '../public'; var pub = 'public';
var app = express.createServer(); var app = express.createServer();
app.use(express.compiler({ src: pub, enable: ['sass'] })); app.use(express.compiler({ src: pub, enable: ['sass'] }));