forked from TanStack/tanstack.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.mjs
129 lines (123 loc) · 3.31 KB
/
app.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
import { createApp } from 'vinxi'
import reactRefresh from '@vitejs/plugin-react'
import { serverFunctions } from '@vinxi/server-functions/plugin'
import { TanStackRouterVite } from '@tanstack/router-vite-plugin'
import { config } from 'vinxi/plugins/config'
import tsconfigPaths from 'vite-tsconfig-paths'
import { serverTransform } from '@vinxi/server-functions/server'
import { normalize } from 'vinxi/lib/path'
import { resolve } from 'import-meta-resolve'
import path from 'path'
import { fileURLToPath } from 'url'
const customVite = () =>
config('dev', (router, app, env) => ({
// ssr: {
// noExternal: [/react-router-server\/dist\/esm\/server-runtime/],
// },
optimizeDeps: {
include: [
'node_modules@tanstack/react-router-server/**/*.js',
'react-icons',
],
},
resolve: {
dedupe: [
...(env.command !== 'build'
? [
'react',
'react-dom',
'@tanstack/store',
'@tanstack/react-store',
'@tanstack/react-router',
'@tanstack/react-router-server',
'@tanstack/react-cross-context',
'@tanstack/history',
'use-sync-external-store',
]
: []),
],
},
// plugins: [
// {
// name: 'inline-env-vars-as-prefix',
// // Write the env vars for some specific keys into the bundle at the very beginning of the file
// // using a (globalThis || window).tsr_env object.
// intro: `(globalThis || window).ROUTER_NAME = import.meta.env.ROUTER_NAME`,
// },
// ],
}))
export default createApp({
server: {
preset: 'vercel',
experimental: {
asyncStorage: true,
asyncContext: true,
},
},
routers: [
{
name: 'public',
type: 'static',
dir: './public',
base: '/',
},
{
name: 'ssr',
type: 'http',
handler: './app/server.tsx',
target: 'server',
plugins: () => [
TanStackRouterVite({
experimental: {
enableCodeSplitting: true,
},
}),
customVite(),
tsconfigPaths(),
serverTransform({
runtime: `@tanstack/react-router-server/server-runtime`,
}),
],
link: {
client: 'client',
},
},
{
name: 'client',
type: 'client',
handler: './app/client.tsx',
target: 'browser',
base: '/_build',
plugins: () => [
TanStackRouterVite({
experimental: {
enableCodeSplitting: true,
},
}),
customVite(),
tsconfigPaths(),
serverFunctions.client({
runtime: `@tanstack/react-router-server/client-runtime`,
}),
reactRefresh(),
],
},
serverFunctions.router({
name: 'server',
plugins: () => [customVite(), tsconfigPaths()],
handler: resolveToRelative(
'@tanstack/react-router-server/server-handler'
),
runtime: `@tanstack/react-router-server/server-runtime`,
}),
],
})
function resolveToRelative(p) {
const toAbsolute = (file) => file.split('://').at(-1)
const resolved = toAbsolute(resolve(p, import.meta.url))
const relative = path.relative(
path.resolve(toAbsolute(import.meta.url), '..'),
resolved
)
return relative
}