Skip to content

Commit 9126b15

Browse files
committed
fix: publicPath slash
1 parent e096ab9 commit 9126b15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/actions-app/remix.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const basePath = process.env.ACTIONS_BASE_URL || '/admin';
1111
module.exports = {
1212
cacheDirectory: './node_modules/.cache/remix',
1313
ignoredRouteFiles: ['**/.*', '**/*.css', '**/*.test.{js,jsx,ts,tsx}'],
14-
publicPath: `/${basePath}/build/`,
14+
publicPath: `${basePath}/build/`,
1515
routes: () => {
1616
return mountRoutes(basePath, 'routes');
1717
},

0 commit comments

Comments
 (0)