We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9ae7bb commit b2da34fCopy full SHA for b2da34f
1 file changed
webpack.config.js
@@ -1,8 +1,5 @@
1
-const webpack = require('webpack');
2
const HtmlWebpackPlugin = require('html-webpack-plugin');
3
4
-const VERSION = require('./version.js');
5
-
6
module.exports = (env, argv) => ({
7
entry: {
8
index: './example/index.js',
@@ -37,7 +34,6 @@ module.exports = (env, argv) => ({
37
34
template: 'example/index.html',
38
35
filename: 'texture-background.html',
39
36
chunks: ['textureBackground']
40
- }),
41
- new webpack.DefinePlugin({ VERSION })
+ })
42
]
43
});
0 commit comments