Skip to content

Commit 7b4d661

Browse files
committed
chore: update
1 parent da2225f commit 7b4d661

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

website/docs/en/guide/advanced/json-files.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,8 +254,9 @@ export default defineConfig({
254254
},
255255
},
256256
output: {
257-
copy: [{ from: './**/*.json', context: './src' }], // [!code highlight]
258-
externals: [/.*\.json$/], // [!code highlight]
257+
// [!code highlight:2]
258+
copy: [{ from: './**/*.json', context: './src' }],
259+
externals: [/.*\.json$/],
259260
},
260261
},
261262
],

website/docs/zh/guide/advanced/json-files.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,8 +251,9 @@ export default defineConfig({
251251
},
252252
},
253253
output: {
254-
copy: [{ from: './**/*.json', context: './src' }], // [!code highlight]
255-
externals: [/.*\.json$/], // [!code highlight]
254+
// [!code highlight:2]
255+
copy: [{ from: './**/*.json', context: './src' }],
256+
externals: [/.*\.json$/],
256257
},
257258
},
258259
],

0 commit comments

Comments
 (0)