mirror of
https://github.com/linsa-io/linsa.git
synced 2026-03-19 07:44:02 +01:00
13 lines
250 B
TypeScript
13 lines
250 B
TypeScript
import { defineConfig } from "@tanstack/start/config"
|
|
import tsConfigPaths from "vite-tsconfig-paths"
|
|
|
|
export default defineConfig({
|
|
vite: {
|
|
plugins: () => [
|
|
tsConfigPaths({
|
|
projects: ["./tsconfig.json"],
|
|
}),
|
|
],
|
|
},
|
|
})
|