Skip to content
This repository was archived by the owner on Sep 3, 2024. It is now read-only.

Commit 283e98a

Browse files
committed
Translate extend-webpack
1 parent 211be56 commit 283e98a

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

Diff for: fr/faq/extend-webpack.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
title: Étendre Webpack
3+
description: Comment étendre la configuration de webpack?
4+
---
5+
6+
# Comment étendre la configuration de webpack?
7+
8+
Vous pouvez étendre la configuration de webpack via l'option `extend` de votre fichier `nuxt.config.js`:
9+
10+
```js
11+
module.exports = {
12+
build: {
13+
extend (config, { isDev, isClient }) {
14+
// ...
15+
}
16+
}
17+
}
18+
```

0 commit comments

Comments
 (0)