0.4.16 • Published 1 year ago

my-vite-plugin-dynamic-base v0.4.16

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

vite-plugin-dynamic-base

  • 🦾 Resolve all resource files dynamic publicPath, like Webpack's __webpack_public_path__.

Installation

npm i vite-plugin-dynamic-base -D

Changelog

0.4.9

2023-04-11

Fix

  • fix html template src parse (#21)

Changelogs

Build Mode

  • es
  • system

Compatible plugins

Usage

// vite.config.ts
import { dynamicBase } from 'vite-plugin-dynamic-base'

export default defineConfig({
  // base: "/",
  base: process.env.NODE_ENV === "production" ? "/__dynamic_base__/" : "/",
  plugins: [
    dynamicBase({ /* options */ }),
  ],
})

Configuration

The following show the default values of the configuration

dynamicBase({
  // dynamic public path var string, default window.__dynamic_base__
  publicPath: 'window.__dynamic_base__',
  // dynamic load resources on index.html, default false. maybe change default true
  transformIndexHtml:  false
})

Plan

  1. Exploring the feasibility of using SWC to transform the AST for processing