Skip to content

Commit

Permalink
remove emptyOutDir
Browse files Browse the repository at this point in the history
  • Loading branch information
hpx7 committed Jun 10, 2022
1 parent 6c0f865 commit e684267
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/poker/client/web/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import react from "@vitejs/plugin-react";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
build: { target: "esnext", emptyOutDir: true },
build: { target: "esnext" },
define: {
"process.env": {
COORDINATOR_HOST: process.env.COORDINATOR_HOST,
Expand Down
2 changes: 1 addition & 1 deletion examples/uno/client/web/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import react from "@vitejs/plugin-react";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
build: { target: "esnext", emptyOutDir: true },
build: { target: "esnext" },
define: {
"process.env": {
COORDINATOR_HOST: process.env.COORDINATOR_HOST,
Expand Down
2 changes: 1 addition & 1 deletion templates/base/client/prototype-ui/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineConfig } from "vite";

export default defineConfig({
build: { target: "esnext", emptyOutDir: true },
build: { target: "esnext" },
define: {
"process.env": {
COORDINATOR_HOST: process.env.COORDINATOR_HOST,
Expand Down

0 comments on commit e684267

Please sign in to comment.