diff --git a/gulpfile.js b/gulpfile.js index 7790850..bca730a 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -49,6 +49,7 @@ gulp.task('partials', function() { gulp.src(['app/libs/ejs_production.js']).pipe(gulp.dest('dist/libs')); gulp.src(['app/libs/microevent.js']).pipe(gulp.dest('dist/libs')); gulp.src(['app/fav/**/*']).pipe(gulp.dest('dist/fav')); + gulp.src(['app/gfx/**/*']).pipe(gulp.dest('dist/gfx')); }); diff --git a/keeper-server.js b/keeper-server.js index d07fd79..5c4cd4a 100644 --- a/keeper-server.js +++ b/keeper-server.js @@ -17,7 +17,7 @@ app.use(logger('dev')); app.use(bodyParser.json()); app.use(bodyParser.urlencoded({ extended: true })); app.use(cookieParser()); -app.use(express.static(path.join(__dirname, 'app'))); +app.use(express.static(path.join(__dirname, 'dist'))); app.use('/', keeper);