1
0
mirror of https://github.com/c9fe/22120.git synced 2024-11-15 07:22:28 +01:00
22120/webpack.config.js
Cris Stringfellow 24ab9c8613 New
2021-11-03 04:51:04 +00:00

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 }),
]
};