mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
13 lines
423 B
JavaScript
13 lines
423 B
JavaScript
const path = require('path');
|
|
const { getJSConfig, getCSSConfig } = require('frappejs/config/rollup');
|
|
|
|
module.exports = [
|
|
getJSConfig({
|
|
input: path.resolve(__dirname, 'www/index.js'),
|
|
output: path.resolve(__dirname, 'www/dist/js/bundle.js'),
|
|
}),
|
|
getCSSConfig({
|
|
input: path.resolve(__dirname, 'www/index.scss'),
|
|
output: path.resolve(__dirname, 'www/dist/css/style.css'),
|
|
})
|
|
] |