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
/* Modifying Webpack Configuration for 'shared' dir
17
18
This section uses Rewire to modify Create React App's webpack configuration without ejecting. Rewire allows us to inject and alter the internal build scripts of CRA at runtime. This allows us to maintain a flexible project structure that keeps shared code outside the webview-ui/src directory, while still adhering to CRA's security model that typically restricts imports to within src/.
@@ -119,6 +120,15 @@ config.output = {
119
120
filename: "static/js/[name].js",
120
121
}
121
122
123
+
// Adjust build environment variables for dev/debug builds.
0 commit comments