2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/config/rollup.config.style.js
2018-04-09 17:58:51 +05:30

16 lines
382 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-postcss')({
extract: true,
plugins: [
require('precss'),
require('autoprefixer')
]
})
]
};