Skip to content

Commit dbe21ad

Browse files
committed
test
1 parent a5db62c commit dbe21ad

File tree

2 files changed

+4
-13
lines changed

2 files changed

+4
-13
lines changed

.github/workflows/webpack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [18.x, 20.x, 22.x]
15+
node-version: [20.x]
1616

1717
steps:
1818
- uses: actions/checkout@v4

webpack.config.js

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
const path = require('path');
2-
31
module.exports = {
4-
//...
5-
devServer: {
6-
static: {
7-
directory: path.join(__dirname, 'public'),
8-
},
9-
compress: true,
10-
port: 3000,
11-
mode: 'none',
12-
},
13-
};
2+
mode: 'development',
3+
entry: './server.js',
4+
};

0 commit comments

Comments
 (0)