mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
69cb2447d8
- PrintPreview - print.html bundle for print - Download PDF
45 lines
884 B
JavaScript
45 lines
884 B
JavaScript
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
|
|
module.exports = {
|
|
staticPath: './static',
|
|
distPath: './dist',
|
|
dev: {
|
|
entry: {
|
|
app: './src/main.js'
|
|
},
|
|
entryHtml: './src/index.html',
|
|
srcDir: './src',
|
|
outputDir: './dist',
|
|
assetsPublicPath: '/',
|
|
devServerPort: 8080,
|
|
env: {
|
|
PORT: process.env.PORT || 8080
|
|
}
|
|
},
|
|
node: {
|
|
paths: {
|
|
main: 'server/index.js'
|
|
}
|
|
},
|
|
electron: {
|
|
entry: {
|
|
app: './src/main-electron.js',
|
|
print: './src/print.js'
|
|
},
|
|
paths: {
|
|
mainDev: 'src-electron/main.dev.js',
|
|
main: 'src-electron/main.js',
|
|
renderer: 'src/electron.js'
|
|
}
|
|
},
|
|
configureWebpack(config) {
|
|
config.plugins.push(
|
|
new HtmlWebpackPlugin({
|
|
chunks: ['print'],
|
|
filename: 'static/print.html',
|
|
template: 'src/print.html'
|
|
})
|
|
);
|
|
}
|
|
};
|