Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@
"dependencies": {
"@docsearch/react": "^3.9.0",
"@react-spring/web": "^9.7.5",
"ajv-keywords": "^3.5.2",
"path-browserify": "^1.0.1",
"prop-types": "^15.8.1",
"react": "^17.0.2",
Expand Down
4 changes: 2 additions & 2 deletions src/content/guides/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -250,9 +250,9 @@ As of version 4, webpack doesn't require any configuration, but most projects wi
**webpack.config.js**

```javascript
const path = require('path');
import path from 'path';

module.exports = {
export default {
entry: './src/index.js',
output: {
filename: 'main.js',
Expand Down
Loading