From 397c3fdc853a6c9735d45b4deac38a3280057e44 Mon Sep 17 00:00:00 2001 From: lijie01 Date: Wed, 9 Feb 2022 22:16:23 +0800 Subject: [PATCH] fix: #18 miss the publicPath of webpack config cause the unittest failure --- .webpack/webpack.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.webpack/webpack.config.js b/.webpack/webpack.config.js index 7f66d47..4405514 100644 --- a/.webpack/webpack.config.js +++ b/.webpack/webpack.config.js @@ -7,6 +7,7 @@ module.exports = { }, output: { path: path.resolve(__dirname, '../dist'), + publicPath: 'none', filename: '[name].js', library: 'VGrid', libraryTarget: 'umd',