Skip to content

Commit f12cdd3

Browse files
authored
Merge pull request #692 from chyipin/patch-2
Update output.md
2 parents e7530ab + 0fd617d commit f12cdd3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

content/concepts/output.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Output
33
sort: 3
44
contributors:
55
- TheLarkInn
6+
- chyipin
67
---
78

89
Options affecting the output of the compilation. `output` options tell Webpack how to write the compiled files to disk. Note, that while there can be multiple `entry` points, only one `output` configuration is specified.
@@ -23,7 +24,7 @@ An [`output.path`](#output-path) as an **absolute path** for what directory you
2324
const config = {
2425
output: {
2526
filename: 'bundle.js',
26-
output: '/home/proj/public/assets'
27+
path: '/home/proj/public/assets'
2728
}
2829
};
2930

0 commit comments

Comments
 (0)