2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 19:29:02 +00:00
books/frappe.conf.js
Saqib ff5da22501 Thumbnail creation using Sharp (#96)
* Thumbnail creation using Sharp

* Cleanup styles and path name

* fix webpack config
2018-10-02 13:33:48 +05:30

20 lines
351 B
JavaScript

// frappe.conf.js template
module.exports = {
staticPath: './static',
distPath: './dist',
dev: {
entryHtml: 'index.html',
srcDir: 'src',
outputDir: './dist',
assetsPublicPath: '/',
devServerPort: 8000,
env: {
PORT: process.env.PORT || 8000
}
},
node: {
paths: {
main: 'server/index.js'
}
}
}