mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-10-30 01:55:58 +01:00
Fix missing assets in webapp
This commit is contained in:
committed by
René Pfeuffer
parent
224e9eabe5
commit
b26a687508
@@ -114,7 +114,7 @@ module.exports = [
|
||||
extensions: [".ts", ".tsx", ".js", ".jsx", ".css", ".scss", ".json"]
|
||||
},
|
||||
output: {
|
||||
path: path.join(root, "build", "assets"),
|
||||
path: path.join(root, "build", "webapp", "assets"),
|
||||
filename: "[name].bundle.js",
|
||||
chunkFilename: "[name].bundle.js"
|
||||
},
|
||||
@@ -190,7 +190,7 @@ module.exports = [
|
||||
minimizer: [new OptimizeCSSAssetsPlugin({})]
|
||||
},
|
||||
output: {
|
||||
path: path.join(root, "build", "assets"),
|
||||
path: path.join(root, "build", "webapp", "assets"),
|
||||
filename: "ui-styles.bundle.js"
|
||||
}
|
||||
},
|
||||
@@ -200,7 +200,7 @@ module.exports = [
|
||||
polyfills: "./ui-polyfill/src/index.js"
|
||||
},
|
||||
output: {
|
||||
path: path.resolve(root, "build", "assets"),
|
||||
path: path.resolve(root, "build", "webapp", "assets"),
|
||||
filename: "[name].bundle.js"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user