We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5db62c commit dbe21adCopy full SHA for dbe21ad
.github/workflows/webpack.yml
@@ -12,7 +12,7 @@ jobs:
12
13
strategy:
14
matrix:
15
- node-version: [18.x, 20.x, 22.x]
+ node-version: [20.x]
16
17
steps:
18
- uses: actions/checkout@v4
webpack.config.js
@@ -1,13 +1,4 @@
1
-const path = require('path');
2
-
3
module.exports = {
4
- //...
5
- devServer: {
6
- static: {
7
- directory: path.join(__dirname, 'public'),
8
- },
9
- compress: true,
10
- port: 3000,
11
- mode: 'none',
-};
+ mode: 'development',
+ entry: './server.js',
+ };
0 commit comments