0.0.1 • Published 4 years ago

vite-plugin-ssi v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

vite-plugin-ssi npm

Server side include for vite

// vite.config.js
import ssi from 'vite-plugin-ssi'

export default {
  plugins: [ssi({
     remoteBasePath: 'http://xxx',
  })]
}

Options

interface Options {
  /**
   * Apply the plugin only for serve or for build.
   */
  apply?: 'serve' | 'build';
  remoteBasePath: string;
}

License

MIT