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

16 lines
382 B
JavaScript
Raw Normal View History

2018-01-30 12:03:04 +00:00
module.exports = {
2018-02-08 09:38:47 +00:00
input: './node_modules/frappejs/client/style/style.scss',
2018-01-30 12:03:04 +00:00
output: {
2018-03-26 12:18:07 +00:00
file: './www/dist/css/style.css',
2018-01-30 12:03:04 +00:00
format: 'cjs'
},
plugins: [
require('rollup-plugin-postcss')({
extract: true,
plugins: [
require('precss'),
require('autoprefixer')
]
})
]
};