Browse Source

out/languages is no longer available (#4989)

Henning Dieterichs 1 week ago
parent
commit
c5e6b52034
1 changed files with 1 additions and 4 deletions
  1. 1 4
      website/webpack.config.ts

+ 1 - 4
website/webpack.config.ts

@@ -7,8 +7,8 @@ import * as webpack from "webpack";
 import * as path from "path";
 import * as HtmlWebpackPlugin from "html-webpack-plugin";
 import { CleanWebpackPlugin } from "clean-webpack-plugin";
-const MiniCssExtractPlugin = require("mini-css-extract-plugin");
 import * as CopyPlugin from "copy-webpack-plugin";
+const MiniCssExtractPlugin = require("mini-css-extract-plugin");
 
 const r = (file: string) => path.resolve(__dirname, file);
 
@@ -131,9 +131,6 @@ module.exports = {
 				},
 			],
 		}),
-		new CopyPlugin({
-			patterns: [{ from: "../out/languages/", to: "./out/languages/" }],
-		}),
 	],
 } as webpack.Configuration;