You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DO NOT USE THIS. Most common features now work out of the box with wrangler, including modules, jsx, typescript, etc. If you need anything more, use a custom build.
576
-
- Deprecation: \\"webpack_config\\":
577
-
DO NOT USE THIS. Most common features now work out of the box with wrangler, including modules, jsx, typescript, etc. If you need anything more, use a custom build."
574
+
- 😶 Ignored: \\"type\\":
575
+
Most common features now work out of the box with wrangler, including modules, jsx, typescript, etc. If you need anything more, use a custom build.
576
+
- 😶 Ignored: \\"webpack_config\\":
577
+
Most common features now work out of the box with wrangler, including modules, jsx, typescript, etc. If you need anything more, use a custom build."
Copy file name to clipboardExpand all lines: packages/wrangler/src/config/validation.ts
+7-5
Original file line number
Diff line number
Diff line change
@@ -65,23 +65,25 @@ export function normalizeAndValidateConfig(
65
65
"miniflare",
66
66
"Wrangler does not use configuration in the `miniflare` section. Unless you are using Miniflare directly you can remove this section.",
67
67
true,
68
-
"😶 UNUSED"
68
+
"😶 Ignored"
69
69
);
70
70
71
71
deprecated(
72
72
diagnostics,
73
73
rawConfig,
74
74
"type",
75
-
"DO NOT USE THIS. Most common features now work out of the box with wrangler, including modules, jsx, typescript, etc. If you need anything more, use a custom build.",
76
-
true
75
+
"Most common features now work out of the box with wrangler, including modules, jsx, typescript, etc. If you need anything more, use a custom build.",
76
+
true,
77
+
"😶 Ignored"
77
78
);
78
79
79
80
deprecated(
80
81
diagnostics,
81
82
rawConfig,
82
83
"webpack_config",
83
-
"DO NOT USE THIS. Most common features now work out of the box with wrangler, including modules, jsx, typescript, etc. If you need anything more, use a custom build.",
84
-
true
84
+
"Most common features now work out of the box with wrangler, including modules, jsx, typescript, etc. If you need anything more, use a custom build.",
0 commit comments