Skip to content

Commit 946cb2d

Browse files
committed
Set esbuild target to esnext
1 parent aceb2a1 commit 946cb2d

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

app.config.ts

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
import { defineConfig } from "@solidjs/start/config";
22

33
export default defineConfig({
4-
// optimizeDeps: {
5-
// disabled: true,
6-
// },
7-
// plugins: [
8-
// solid({
9-
// ssr: true,
10-
// }),
11-
// ],
12-
// server: {
13-
// port: 3001,
14-
// host: "0.0.0.0",
4+
server: {
5+
esbuild: {
6+
options: {
7+
target: "esnext",
8+
},
9+
},
10+
},
1511
// },
1612
});

0 commit comments

Comments
 (0)