diff --git a/config/webpack.paths.ts b/config/webpack.paths.ts index 55aabe9a3..884df2278 100644 --- a/config/webpack.paths.ts +++ b/config/webpack.paths.ts @@ -4,8 +4,9 @@ const rootPath = path.join(__dirname, '..'); const nodeModulesPath = path.join(rootPath, 'node_modules'); -const assetsImagesPath = path.join(rootPath, 'assets', 'images'); -const assetsSoundsPath = path.join(rootPath, 'assets', 'sounds'); +const assetsPath = path.join(rootPath, 'assets'); +const assetsImagesPath = path.join(assetsPath, 'images'); +const assetsSoundsPath = path.join(assetsPath, 'sounds'); const srcPath = path.join(rootPath, 'src'); const srcMainPath = path.join(srcPath, 'main'); @@ -18,6 +19,7 @@ const distPath = path.join(rootPath, 'dist'); export default { rootPath, nodeModulesPath, + assetsPath, assetsImagesPath, assetsSoundsPath, srcPath,