Files
lifeEngine/webpack.config.js
2022-03-19 14:36:10 -05:00

15 lines
313 B
JavaScript

const path = require('path');
const webpack = require("webpack");
module.exports = {
entry: './src/index.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist/js/'),
},
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
})
]
};