2
0
mirror of https://github.com/frappe/books.git synced 2025-02-13 17:39:09 +00:00
books/config/rollup.config.style.js

17 lines
423 B
JavaScript
Raw Normal View History

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