diff options
author | Humberto Alfonso Díaz <humberto.alfonso@asvito.es> | 2019-06-20 09:12:47 +0200 |
---|---|---|
committer | Humberto Alfonso Díaz <humberto.alfonso@asvito.es> | 2019-06-20 09:12:47 +0200 |
commit | ee8fc5be76e799f73243058b6e4b04833dc3a6cc (patch) | |
tree | 42b0f200cf5d0d28a0bdb6bb3e8963552c2f5bd9 /webpack.config.js | |
parent | 39821da621ce39bb0774273ffe9d5301b51e6282 (diff) |
RESTRUT Rename app.js to index.js and remove bootstrap dependency
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webpack.config.js b/webpack.config.js index 157b8be..b875b6c 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -9,9 +9,9 @@ const ZipPlugin = require('zip-webpack-plugin'); module.exports = { mode: 'production', - entry: './src/app.js', + entry: './src/index.js', output: { - filename: 'app.js', + filename: 'index.js', path: __dirname + '/dist' }, optimization: { |