buster/apps/web-tss/vite.config.ts

34 lines
821 B
TypeScript
Raw Normal View History

2025-08-13 03:21:24 +08:00
import tailwindcss from '@tailwindcss/vite';
import { tanstackStart } from '@tanstack/react-start/plugin/vite';
import viteReact from '@vitejs/plugin-react';
import { defineConfig } from 'vite';
2025-08-13 04:07:06 +08:00
import checker from 'vite-plugin-checker';
2025-08-13 03:21:24 +08:00
import viteTsConfigPaths from 'vite-tsconfig-paths';
2025-08-12 11:28:36 +08:00
export default defineConfig(({ command }) => {
const isServe = command === 'serve';
2025-08-12 11:28:36 +08:00
return {
server: {
port: 3000,
},
plugins: [
// this is the plugin that enables path aliases
viteTsConfigPaths({
projects: ['./tsconfig.json'],
}),
tailwindcss(),
tanstackStart({
customViteReactPlugin: true,
}),
viteReact(),
isServe
? checker({
typescript: true,
biome: true,
})
: undefined,
],
};
});