불필요한 설정 제거

This commit is contained in:
ByungyeonKim
2021-11-23 23:07:17 +09:00
parent 02b982cf71
commit 31cc950453

View File

@@ -15,7 +15,6 @@ module.exports = {
}, },
devServer: { devServer: {
client: { client: {
progress: true,
overlay: { overlay: {
errors: true, errors: true,
warnings: false, warnings: false,
@@ -55,6 +54,7 @@ module.exports = {
}) })
.then((result) => res.send(result)); .then((result) => res.send(result));
}); });
devServer.app.use(apiMocker('/api', 'mocks/api')); devServer.app.use(apiMocker('/api', 'mocks/api'));
}, },
}, },
@@ -68,8 +68,4 @@ module.exports = {
], ],
}, },
plugins: [new HtmlWebpackPlugin({ template: './public/index.html' })], plugins: [new HtmlWebpackPlugin({ template: './public/index.html' })],
resolve: {
modules: ['node_modules'],
extensions: ['.js'],
},
}; };