mirror of
https://github.com/c9fe/22120.git
synced 2024-11-15 07:22:28 +01:00
18 lines
334 B
JavaScript
18 lines
334 B
JavaScript
const path = require('path');
|
|
const webpack = require('webpack');
|
|
|
|
module.exports = {
|
|
entry: "./app.js",
|
|
output: {
|
|
path: path.resolve(__dirname),
|
|
filename: "22120.js"
|
|
},
|
|
target: "node",
|
|
node: {
|
|
__dirname: false
|
|
},
|
|
plugins: [
|
|
new webpack.BannerPlugin({ banner: "#!/usr/bin/env node", raw: true }),
|
|
]
|
|
};
|