less / less-plugin-autoprefix

Adds the ability for less to be post-processed by autoprefixer
Apache License 2.0
170 stars 32 forks source link

Autoprefix cause extra source "<input css 1>" in source map file #25

Open hkm-mo opened 8 years ago

hkm-mo commented 8 years ago

This is my code:

var option = {
    paths: [ '/data/src/less/' ],
    plugins: [autoprefixPlugin],
    sourceMap: true
};

less.render(data, option).then( (output) => {
    //My code
});