X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=js%2Fwebpack.common.js;h=ba57965fd4aeceb226b08a643a85b3e907994e3c;hb=f9b3af44af6897b286de0674bc9a919c689ff64e;hp=dccac82c4d767ac6163f2cebb1d6ddc5041e37b2;hpb=711408cc603c2ebe21f8b825456bcbbe59e02f70;p=gpl%2Fargeo-suite.git diff --git a/js/webpack.common.js b/js/webpack.common.js index dccac82..ba57965 100644 --- a/js/webpack.common.js +++ b/js/webpack.common.js @@ -6,7 +6,7 @@ const path = require('path'); module.exports = { entry: { "geo": './src/geo/index.js', - "graph": './src/graph/index.js', + "chart": './src/chart/index.js', }, output: { filename: '[name].[contenthash].js', @@ -50,11 +50,11 @@ module.exports = { chunks: ['geo'], }), new HtmlWebpackPlugin({ - title: 'Argeo Suite Graph JS', - template: 'src/graph/index.html', + title: 'Argeo Suite Chart JS', + template: 'src/chart/index.html', scriptLoading: 'module', - filename: 'graph.html', - chunks: ['graph'], + filename: 'chart.html', + chunks: ['chart'], }), ],