We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bef037b commit b047cbaCopy full SHA for b047cba
packages/uikit-workshop/webpack.config.js
@@ -17,6 +17,7 @@ const defaultConfig = {
17
buildDir: './dist',
18
prod: false, // or false for local dev
19
sourceMaps: true,
20
+ publicPath: '/styleguide/',
21
};
22
23
module.exports = async function() {
@@ -92,7 +93,7 @@ module.exports = async function() {
92
93
},
94
output: {
95
path: path.resolve(process.cwd(), `${config.buildDir}/styleguide`),
- publicPath: '/pattern-lab/styleguide/',
96
+ publicPath: `${config.publicPath}`,
97
filename: '[name].js',
98
chunkFilename: `js/[name]-chunk-[chunkhash].js`,
99
0 commit comments