mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
19 lines
462 B
JavaScript
19 lines
462 B
JavaScript
// https://github.com/michael-ciniawsky/postcss-load-config
|
|
|
|
module.exports = {
|
|
"plugins": {
|
|
"postcss-import": {
|
|
resolve(id) {
|
|
// sass imports that start with ~ (which refers node_modules) should be supported
|
|
if (id.startsWith('~')) {
|
|
return id.slice(1);
|
|
}
|
|
return id;
|
|
}
|
|
},
|
|
"postcss-url": {},
|
|
// to edit target browsers: use "browserslist" field in package.json
|
|
"autoprefixer": {}
|
|
}
|
|
}
|