diff options
author | Vitaly Takmazov | 2023-10-08 21:47:45 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-10-08 21:47:45 +0300 |
commit | 69ec9ec1d468eae71c0bd02b7dd7d6d6c13d291c (patch) | |
tree | ae453dcf2b552ac2e734d8477f6491bd43c1fe62 | |
parent | 7e71f571e450c0007924b3b38e02d29f3c842d60 (diff) |
vnext: fix public path
-rw-r--r-- | vnext/webpack.config.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vnext/webpack.config.js b/vnext/webpack.config.js index 0ce5d9a4..6e35235c 100644 --- a/vnext/webpack.config.js +++ b/vnext/webpack.config.js @@ -16,7 +16,8 @@ module.exports = (env, argv) => { }, output: { path: __dirname + '/../public', - filename: '[name].js' + filename: '[name].js', + publicPath: '/' }, module: { rules: [{ |