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
This function takes the original object containing the default webpack configuration and returns a modified one with an applied `HotModuleReplacementPlugin` plugin.
51
96
52
97
#### Hot-Module Replacement
@@ -86,16 +131,32 @@ If you are not using the [Nest CLI](https://docs.nestjs.com/cli/overview), the c
86
131
87
132
#### Installation
88
133
89
-
First install the required packages:
134
+
First install the required packages.
135
+
136
+
##### With NPM
90
137
91
138
```bash
92
139
$ npm i --save-dev webpack webpack-cli webpack-node-externals ts-loader run-script-webpack-plugin
This configuration tells webpack a few essential things about your application: location of the entry file, which directory should be used to hold **compiled** files, and what kind of loader we want to use to compile source files. Generally, you should be able to use this file as-is, even if you don't fully understand all of the options.
0 commit comments