mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
ff5da22501
* Thumbnail creation using Sharp * Cleanup styles and path name * fix webpack config
20 lines
351 B
JavaScript
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'
|
|
}
|
|
}
|
|
} |