diff --git a/web-optimle/www/webpack.config.js b/web-optimle/www/webpack.config.js index af076fc..2e24db0 100644 --- a/web-optimle/www/webpack.config.js +++ b/web-optimle/www/webpack.config.js @@ -7,7 +7,7 @@ module.exports = { path: path.resolve(__dirname, "dist"), filename: "bootstrap.js", }, - mode: "development", + mode: "production", devtool: "source-map", resolve: { extensions: ['', '.js', '.json', '.ts', '.tsx'], @@ -31,6 +31,7 @@ module.exports = { plugins: [ new HtmlWebpackPlugin({ title: 'Optimle, a word guessing game', + meta: {viewport: 'width=device-width, initial-scale=1, shrink-to-fit=no'}, }), ], };