New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@netlify/vite-plugin-tanstack-start

Package Overview
Dependencies
Maintainers
17
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@netlify/vite-plugin-tanstack-start

Vite plugin for TanStack Start on Netlify

latest
Source
npmnpm
Version
1.3.2
Version published
Maintainers
17
Created
Source

@netlify/vite-plugin-tanstack-start

This Vite plugin configures your TanStack Start app for deployment to Netlify and provides full local emulation of the Netlify platform directly in vite dev.

Features

  • Configures vite build to prepare your app's production build for deployment to Netlify
    • See full TanStack Start deployment docs for more
  • Configures vite dev to behave just like the production Netlify platform, but locally on your machine

Installation

npm install -D @netlify/vite-plugin-tanstack-start

Configuration options

The plugin accepts the following options:

{
  dev: {
    edgeFunctions: {
      enabled: false,
    },
    // ... All dev options are supported here.
    // See https://www.npmjs.com/package/@netlify/vite-plugin.
  },
}

Usage

Add the plugin to your vite.config.js or vite.config.ts:

import { defineConfig } from 'vite'
import { tanstackStart } from '@tanstack/react-start/plugin/vite'
import react from '@vitejs/plugin-react'
import netlify from '@netlify/vite-plugin-tanstack-start'

export default defineConfig({
  plugins: [tanstackStart(), react(), netlify()],
})

Keywords

netlify

FAQs

Package last updated on 19 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts