vite-plugin-import-url
v1.0.1
Published
Small Vite plugin, this plugin can be used during build, right? Package the URL or with the imported file and return the correct path
Downloads
48
Readme
vite-plugin-import-url
Small Vite plugin, this plugin can be used during build, right? Package the URL or with the imported file and return the correct path
Install
npm
npm i vite-plugin-import-url --save-devpnpm
pnpm add -D vite-plugin-import-urlEnable
import { defineConfig } from "vite";
import { viteImportUrl } from "vite-plugin-import-url";
export default defineConfig({
plugins: [viteImportUrl()],
});Usage
New correct syntax.
import url from './test.ts' with { type: 'url' };Also works with the previous assert syntax.
import url from "./test.ts?url";