0.1.1 • Published 5 months ago

unplugin-raw v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

unplugin-raw npm

Unit Test

Transform file to a default-export string. It will be transformed to JavaScript, then a string.

Installation

npm i -D unplugin-raw
// vite.config.ts
import Raw from 'unplugin-raw/vite'

export default defineConfig({
  plugins: [Raw()],
})

// rollup.config.js
import Raw from 'unplugin-raw/rollup'

export default {
  plugins: [Raw()],
}

// esbuild.config.js
import { build } from 'esbuild'

build({
  plugins: [require('unplugin-raw/esbuild')()],
})

Usage

import text from './ts.ts?raw'
import text2 from './js.js?raw'
import text3 from './jsx.jsx?raw'

Sponsors

License

MIT License © 2023-PRESENT 三咲智子