@tanstack/solid-start
Version:
Modern and scalable routing for Solid applications
58 lines (55 loc) • 1.72 kB
text/typescript
import { fileURLToPath } from 'node:url'
import {
TanStackStartVitePluginCore,
VITE_ENVIRONMENT_NAMES,
} from '@tanstack/start-plugin-core'
import path from 'pathe'
import type { TanStackStartInputConfig } from '@tanstack/start-plugin-core'
import type { PluginOption } from 'vite'
const currentDir = path.dirname(fileURLToPath(import.meta.url))
const defaultEntryDir = path.resolve(
currentDir,
'..',
'..',
'plugin',
'default-entry',
)
const defaultEntryPaths = {
client: path.resolve(defaultEntryDir, 'client.tsx'),
server: path.resolve(defaultEntryDir, 'server.ts'),
start: path.resolve(defaultEntryDir, 'start.ts'),
}
export function tanstackStart(
options?: TanStackStartInputConfig,
): Array<PluginOption> {
return [
{
name: 'tanstack-solid-start:config',
configEnvironment(environmentName, options) {
return {
optimizeDeps:
environmentName === VITE_ENVIRONMENT_NAMES.client ||
(environmentName === VITE_ENVIRONMENT_NAMES.server &&
// This indicates that the server environment has opted in to dependency optimization
options.optimizeDeps?.noDiscovery === false)
? {
// As `@tanstack/solid-start` depends on `@tanstack/solid-router`, we should exclude both.
exclude: [
'@tanstack/solid-start',
'@tanstack/solid-router',
'@tanstack/start-static-server-functions',
],
}
: undefined,
}
},
},
TanStackStartVitePluginCore(
{
framework: 'solid',
defaultEntryPaths,
},
options,
),
]
}