mirror of
https://github.com/frappe/books.git
synced 2024-12-23 11:29:03 +00:00
17 lines
419 B
JavaScript
17 lines
419 B
JavaScript
|
module.exports = {
|
||
|
input: './node_modules/frappejs/client/style/index.scss',
|
||
|
output: {
|
||
|
file: './dist/css/style.css',
|
||
|
format: 'cjs'
|
||
|
},
|
||
|
plugins: [
|
||
|
require('rollup-plugin-sass')(),
|
||
|
require('rollup-plugin-postcss')({
|
||
|
extract: true,
|
||
|
plugins: [
|
||
|
require('precss'),
|
||
|
require('autoprefixer')
|
||
|
]
|
||
|
})
|
||
|
]
|
||
|
};
|