diff --git a/packages/fes-preset-built-in/package.json b/packages/fes-preset-built-in/package.json index a93feca0..ddd340db 100644 --- a/packages/fes-preset-built-in/package.json +++ b/packages/fes-preset-built-in/package.json @@ -65,7 +65,7 @@ "style-loader": "^2.0.0", "url-loader": "^4.1.1", "vue-loader": "^16.1.2", - "webpack": "^5.21.0", + "webpack": "^5.24.2", "webpack-bundle-analyzer": "^4.4.0", "webpack-chain": "^6.5.1", "webpack-dev-server": "^3.11.2", diff --git a/packages/fes-preset-built-in/src/plugins/commands/webpackConfig/index.js b/packages/fes-preset-built-in/src/plugins/commands/webpackConfig/index.js index fa709d50..e3b14d8b 100644 --- a/packages/fes-preset-built-in/src/plugins/commands/webpackConfig/index.js +++ b/packages/fes-preset-built-in/src/plugins/commands/webpackConfig/index.js @@ -163,6 +163,12 @@ export default async function getConfig({ }); // --------------- js ----------- + // https://webpack.docschina.org/configuration/module/#resolve-fully-specified + webpackConfig.module + .rule('esm') + .test(/\.m?jsx?$/) + .resolve.set('fullySpecified', false); + webpackConfig.module .rule('js') .test(/\.(js|mjs|jsx)$/)