Skip to content

Commit 7c3a583

Browse files
chore: fix node public path sample (#2468)
Co-authored-by: ScriptedAlchemy <[email protected]>
1 parent 677958c commit 7c3a583

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/node-host/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module.exports = composePlugins(withNx(), async (config) => {
77
// e.g. `config.plugins.push(new MyPlugin())`
88
config.cache = false;
99
config.devtool = false;
10-
config.output.publicPath = '/testing';
10+
config.output.publicPath = 'auto';
1111
await new Promise((r) => setTimeout(r, 400));
1212
config.module.rules.pop();
1313
config.plugins.push(

0 commit comments

Comments
 (0)