質問編集履歴

1

追加編集しました

2020/11/19 01:42

投稿

oyu
oyu

スコア48

test CHANGED
File without changes
test CHANGED
@@ -5,6 +5,10 @@
5
5
  webpack初心者です。
6
6
 
7
7
  npx webpackで実行したのですがエラーが出ます。
8
+
9
+ webpack.config.jsファイルを作ってからエラーが出ました。
10
+
11
+
8
12
 
9
13
  設定ファイルを編集しているのですがググっても
10
14
 
@@ -37,3 +41,21 @@
37
41
  Please strictly follow the order of the keywords in the pattern.
38
42
 
39
43
  ```
44
+
45
+
46
+
47
+ ```webpack.config.js
48
+
49
+ webpack.config.jsのコードになります。
50
+
51
+
52
+
53
+ module.exports = {
54
+
55
+ mode: "development",
56
+
57
+ devtool: 'none'
58
+
59
+ }
60
+
61
+ ```