mirror of
https://github.com/daledavies/jump.git
synced 2025-11-02 11:25:50 +01:00
Add webpack for js development
This commit is contained in:
10
webpack.config.js
Normal file
10
webpack.config.js
Normal file
@@ -0,0 +1,10 @@
|
||||
const path = require('path');
|
||||
|
||||
module.exports = {
|
||||
mode: 'production',
|
||||
entry: './jumpapp/assets/js/src/index.js',
|
||||
output: {
|
||||
filename: 'index.js',
|
||||
path: path.resolve(__dirname, './jumpapp/assets/js/'),
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user