2
0
mirror of https://github.com/frappe/books.git synced 2024-11-10 15:50:56 +00:00
books/config/rollup.config.style.js
2018-03-26 17:48:07 +05:30

17 lines
423 B
JavaScript

module.exports = {
input: './node_modules/frappejs/client/style/style.scss',
output: {
file: './www/dist/css/style.css',
format: 'cjs'
},
plugins: [
require('rollup-plugin-sass')(),
require('rollup-plugin-postcss')({
extract: true,
plugins: [
require('precss'),
require('autoprefixer')
]
})
]
};