1.3.4 • Published 2 years ago
vite-string-plugin v1.3.4
vite-string-plugin
Vite plugin to import files as string, with zero dependencies
Usage
vite.config.js
import {defineConfig} from "vite";
import {stringPlugin} from "vite-string-plugin";
export default defineConfig({
plugins: [
stringPlugin(),
],
});file.js
import foo from "./foo.svg";Options
match: Regex to match the path against. Default:/\.(svg|md|xml)$/i.
Typescript
Add these to your project-specific type declarations:
declare module "*.svg" {
const value: string;
export default value;
}
declare module "*.md" {
const value: string;
export default value;
}
declare module "*.xml" {
const value: string;
export default value;
}1.3.4
2 years ago
1.3.3
2 years ago
1.3.2
2 years ago
1.3.1
2 years ago
1.3.0
2 years ago
1.2.0
2 years ago
1.1.5
2 years ago
1.1.4
2 years ago
1.1.3
2 years ago
1.1.2
3 years ago
1.1.1
3 years ago
1.1.0
3 years ago
1.0.10
3 years ago
1.0.9
3 years ago
1.0.8
3 years ago
1.0.7
3 years ago
1.0.6
3 years ago
1.0.5
3 years ago
1.0.4
3 years ago
1.0.3
3 years ago
1.0.2
3 years ago
1.0.1
3 years ago
1.0.0
3 years ago
0.1.0
3 years ago