Skip to content

Commit

Permalink
build: fix netlify previews
Browse files Browse the repository at this point in the history
  • Loading branch information
EdieLemoine committed Apr 15, 2024
1 parent 5ab7245 commit fe2c0a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/sandbox/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default defineConfig(({mode}) => {
return {
plugins: [vue(), customTsConfig({tsConfigPath: 'tsconfig.base.json'})],

base: isProd ? '/delivery-options/' : '/',
base: isProd && !process.env.NETLIFY ? '/delivery-options/' : '/',

server: {
port: PORT,
Expand Down

0 comments on commit fe2c0a0

Please sign in to comment.