Initial commit
This commit is contained in:
9
webpack.config.js
Normal file
9
webpack.config.js
Normal file
@@ -0,0 +1,9 @@
|
||||
const path = require('path');
|
||||
|
||||
module.exports = {
|
||||
entry: "./src/index.js", // bundle's entry point
|
||||
output: {
|
||||
path: path.resolve(__dirname, 'dist'), // output directory
|
||||
filename: 'bundle.js' // name of the generated bundle
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user