2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 03:29:00 +00:00
books/vue.config.js

34 lines
800 B
JavaScript
Raw Normal View History

const webpack = require('webpack');
module.exports = {
pages: {
index: {
entry: 'src/main.js',
filename: 'index.html'
},
print: {
entry: 'src/print.js',
filename: 'print.html'
}
},
runtimeCompiler: true,
lintOnSave: process.env.NODE_ENV !== 'production',
configureWebpack(config) {
Object.assign(config.resolve.alias, {
deepmerge$: 'deepmerge/dist/umd.js',
'frappe-charts$': 'frappe-charts/dist/frappe-charts.esm.js'
});
config.plugins.push(
// https://github.com/knex/knex/issues/1446#issuecomment-537715431
new webpack.ContextReplacementPlugin(
2019-12-16 11:27:28 +00:00
/knex[/\\]lib[/\\]dialects/,
/sqlite3[/\\]index.js/
)
);
config.devtool = 'source-map';
},
transpileDependencies: ['frappejs']
};