Skip to content

Commit

Permalink
Rename dist to build
Browse files Browse the repository at this point in the history
  • Loading branch information
mj12albert committed Jan 3, 2025
1 parent 411fbad commit c08c6f2
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
.netlify
build
build-tests
dist
node_modules
package-lock.json
size-snapshot.json
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/serve.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"public": "dist",
"public": "build",
"rewrites": [{ "source": "**", "destination": "/index.html" }]
}
2 changes: 1 addition & 1 deletion test/regressions/serve.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"public": "dist",
"public": "build",
"rewrites": [{ "source": "**", "destination": "/index.html" }]
}
2 changes: 1 addition & 1 deletion test/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["vite/client"]
},
"include": ["e2e/**/*", "regressions/**/*"],
"exclude": ["node_modules", "dist"]
"exclude": ["node_modules", "build"]
}
2 changes: 1 addition & 1 deletion test/vite.shared.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ export default defineConfig({
},
},

build: { chunkSizeWarningLimit: 9999 },
build: { outDir: 'build', chunkSizeWarningLimit: 9999 },
});

0 comments on commit c08c6f2

Please sign in to comment.