Node.js - express - jade - compile SASS/LESS

前端 未结 5 1730
忘了有多久
忘了有多久 2021-01-31 12:21

Anyone have a really newbie guide to nodejs - express - SASS/LESS? I have not been able to get this working. The example I have now is a bareboned as possible..

5条回答
  •  你的背包
    2021-01-31 12:56

    I'm working on express 4.x and using SASS. Here is a snippet part I'm using for styles (mind the comments):

    var express = require('express'),
        // ... other packages
        sass = require('node-sass');
    
    // ...
    var app = express();
    // ...
    // Commented this default express generator line:
    // app.use(require('stylus').middleware(path.join(__dirname, 'public')));
    //
    // Because of some bug the node-sass (http://git.io/eItWzA) does not scan the correct folders,
    // so I have both .scss and final .css in one /public/css/ folder
    app.use(
        sass.middleware({
            src: __dirname + '/public/', // where the sass files are 
            dest: __dirname + '/public/', // where css should go
        })
    );
    
    // ... rest of app
    

    Here is a gist for it: http://git.io/Vr9KJA

提交回复
热议问题