Skip to content

Commit a0bd0cd

Browse files
authored
Merge pull request #448 from soulchainer/hotfix/fix-puntuation-in-code_splitting_libraries_md
Fix mixed quotation marks and backticks
2 parents 884160a + ad8af5f commit a0bd0cd

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)