mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 20:26:23 +00:00
45 lines
804 B
JavaScript
45 lines
804 B
JavaScript
var webpack = require('webpack');
|
|
var path = require('path');
|
|
|
|
var config = {
|
|
context: __dirname + '/src',
|
|
|
|
entry: {
|
|
app: './index.js',
|
|
},
|
|
target: 'node',
|
|
output: {
|
|
path: path.resolve(__dirname, 'dist'),
|
|
filename: 'bundle.js'
|
|
},
|
|
// module: {
|
|
// rules: [
|
|
// {
|
|
// test: /\.js$/,
|
|
// exclude: /node_modules/
|
|
// },
|
|
// ],
|
|
// },
|
|
plugins: [
|
|
new webpack.IgnorePlugin({
|
|
checkResource(resource) {
|
|
const lazyImports = [
|
|
'pg-native',
|
|
'uws'
|
|
];
|
|
if (!lazyImports.includes(resource)) {
|
|
return false;
|
|
}
|
|
try {
|
|
require.resolve(resource);
|
|
} catch (err) {
|
|
return true;
|
|
}
|
|
return false;
|
|
},
|
|
}),
|
|
],
|
|
};
|
|
|
|
module.exports = config;
|