소스 검색

out/languages is no longer available (#4989)

Henning Dieterichs 1 주 전
부모
커밋
c5e6b52034
1개의 변경된 파일1개의 추가작업 그리고 4개의 파일을 삭제
  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;