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
Make sure to delete the `/dist` folder and rebuild your application whenever plugin options are updated.
190
-
191
-
```bash
192
-
$ nest build
193
-
```
194
-
195
-
Or you can configure `package.json` with the following scripts
196
-
197
-
```json
198
-
"prebuild": "rimraf dist",
199
-
"build": "nest build",
200
-
```
201
-
202
-
and run it using
203
-
204
-
```bash
205
-
$ npm run build
206
-
```
207
-
208
-
> info **Hint** Setting `"deleteOutDir": true` in [Global Compiler Options](https://docs.nestjs.com/cli/monorepo#global-compiler-options) will remove the compilation output directory everytime `nest build` is invoked
209
-
210
190
If you don't use the CLI but instead have a custom `webpack` configuration, you can use this plugin in combination with `ts-loader`:
0 commit comments