A smart Vite plugin that enables pretty development URLs, including HTTPS.
- Proxies HTTP/HTTPS requests
 - Pretty development URLs
 - Smart HTTPS management
 - Automatically cleans URLs
 - Lightweight
 - Soon: Local Tunneling & WebSocket Proxying
 
npm install -d vite-plugin-local
# bun install -d vite-plugin-local// vite.config.ts
import { defineConfig } from 'vite'
import Local from 'vite-plugin-local'
export default defineConfig({
  plugins: [
    Local({
      domain: 'my-app.local', // default: stacks.localhost
      https: true, // default: true, pass TlsConfig options for custom certificates
      cleanup: {
        certs: true, // default: false, cleans up the certificates created on server shutdown
        hosts: true, // default: true, cleans up /etc/hosts on server shutdown
      },
      cleanUrls: true, // default: false, cleans up URLs by not requiring the .html extension
      verbose: true, // default: false, enables detailed logging
    })
  ]
})To learn more, head over to the documentation.
bun testPlease see our releases page for more information on what has changed recently.
Please review the Contributing Guide for details.
For help, discussion about best practices, or any other conversation that would benefit from being searchable:
For casual chit-chat with others using this package:
Join the Stacks Discord Server
โSoftware that is free, but hopes for a postcard.โ We love receiving postcards from around the world showing where vite-plugin-local is being used! We showcase them on our website too.
Our address: Stacks.js, 12665 Village Ln #2306, Playa Vista, CA 90094, United States ๐
We would like to extend our thanks to the following sponsors for funding Stacks development. If you are interested in becoming a sponsor, please reach out to us.
The MIT License (MIT). Please see LICENSE for more information.
Made with ๐
