2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 19:29:02 +00:00
books/frappe.conf.js

20 lines
351 B
JavaScript
Raw Normal View History

// 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'
}
}
}