Skip to content

Commit

Permalink
Fix typo in Webpack 4 configuration
Browse files Browse the repository at this point in the history
Fixed a missing single quote at the beginning of the string in the Webpack 4 configuration example.
  • Loading branch information
galexite authored and jgthms committed May 23, 2019
1 parent 9f18c27 commit ff17a85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/documentation/customize/with-webpack.html
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
},
plugins: [
new MiniCssExtractPlugin({
filename: css/[name].bundle.css'
filename: 'css/[name].bundle.css'
}),
]
};
Expand Down

0 comments on commit ff17a85

Please sign in to comment.