Skip to content

Commit 5cf0800

Browse files
committed
bug: internal links stay internal
fixes #0
1 parent c1a7f55 commit 5cf0800

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const config = {
3434
},
3535
},), ],
3636
};
37-
if (process.env.LIVE_SITE !== 'true') {
37+
if (process.env.LIVE_SITE === 'true') {
3838
config.base = 'https://iab-cdn.com/';
3939
}
4040
// https://vitejs.dev/config/

0 commit comments

Comments
 (0)