Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 9e4bba0

Browse files
committed
fix: path during local setup
1 parent bb78934 commit 9e4bba0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

webpack.config.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const path = require("path");
66
const autoprefixer = require("autoprefixer");
77

88

9-
const cssLocalIdent = process.env.APPMODE === "production"
9+
const cssLocalIdent = process.env.APPMODE === "production"
1010
? "[hash:base64:6]"
1111
: "teams_[path][name]___[local]___[hash:base64:6]";
1212

@@ -18,6 +18,10 @@ module.exports = (webpackConfigEnv) => {
1818
});
1919

2020
return webpackMerge.smart(defaultConfig, {
21+
output: {
22+
// path: path.resolve(__dirname, 'dist'),
23+
publicPath: 'taas-app',
24+
},
2125
// modify the webpack config however you'd like to by adding to this object
2226
module: {
2327
rules: [

0 commit comments

Comments
 (0)