Skip to content

Commit ad8af5f

Browse files
authored
Fix mixed quotation marks and backticks
All `filename` properties in `code-splitting-libraries.md` are using quotation marks for open their filename string and «closing» them with backticks. Yeah, is a silly edit, but I'm just reading the documentation and it disturbes me ^_^U.
1 parent 884160a commit ad8af5f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

content/guides/code-splitting-libraries.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ module.exports = function(env) {
3737
return {
3838
entry: './index.js',
3939
output: {
40-
filename: '[chunkhash].[name].js`,
40+
filename: '[chunkhash].[name].js',
4141
path: './dist'
4242
}
4343
}
@@ -63,7 +63,7 @@ module.exports = function(env) {
6363
vendor: 'moment'
6464
},
6565
output: {
66-
filename: '[chunkhash].[name].js`,
66+
filename: '[chunkhash].[name].js',
6767
path: './dist'
6868
}
6969
}
@@ -92,7 +92,7 @@ module.exports = function(env) {
9292
vendor: 'moment'
9393
},
9494
output: {
95-
filename: '[chunkhash].[name].js`,
95+
filename: '[chunkhash].[name].js',
9696
path: './dist'
9797
},
9898
plugins: [
@@ -126,7 +126,7 @@ module.exports = function(env) {
126126
vendor: 'moment'
127127
},
128128
output: {
129-
filename: '[chunkhash].[name].js`,
129+
filename: '[chunkhash].[name].js',
130130
path: './dist'
131131
},
132132
plugins: [

0 commit comments

Comments
 (0)