Skip to content

Commit

Permalink
docs: fix wrong code in entry-context.mdx (#1897)
Browse files Browse the repository at this point in the history
  • Loading branch information
lio-mengxiang authored Apr 19, 2024
1 parent ce07410 commit 85ded0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/content/configuration/entry-context.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ module.exports = {
//...
entry: {
app: './app.js',
home: { import: './contact.js', filename: 'pages/[name][ext]' },
about: { import: './about.js', filename: 'pages/[name][ext]' },
home: { import: './contact.js', filename: 'pages/[name].js' },
about: { import: './about.js', filename: 'pages/[name].js' },
},
};
```
Expand Down

0 comments on commit 85ded0a

Please sign in to comment.