Files
angular-webpack/webpack.config.js
2017-09-19 17:51:06 +02:00

10 lines
255 B
JavaScript

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
}
};