From a8cbeae2d3677fe48bc88f3e8d61cf4649eef899 Mon Sep 17 00:00:00 2001 From: julian laplace Date: Wed, 14 Jun 2023 22:49:35 +0200 Subject: init --- webpack.config.js | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 webpack.config.js (limited to 'webpack.config.js') diff --git a/webpack.config.js b/webpack.config.js new file mode 100644 index 0000000..531d909 --- /dev/null +++ b/webpack.config.js @@ -0,0 +1,31 @@ +const path = require("path"); +const HtmlWebpackPlugin = require("html-webpack-plugin"); + +module.exports = { + mode: "production", + entry: "./src/index.jsx", + devtool: "eval-source-map", + module: { + rules: [ + { + test: /\.(js|jsx)$/, + exclude: /node_modules/, + loader: "babel-loader", + }, + { + test: /\.(css)$/, + use: ["style-loader", "css-loader"], + }, + { + test: /\.tsx?$/, + use: 'ts-loader', + exclude: /node_modules/, + }, + ], + }, + performance: { + hints: false, + maxEntrypointSize: 512000, + maxAssetSize: 512000, + }, +}; -- cgit v1.2.3-70-g09d2