mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-21 22:49:20 +01:00
* feat: added dpi preview * fix: switched to resvg * build: updated versions and nitro build config * fix: switched to resvg-wasm * fix: trying out fetch with import meta url * fix: trying out copy wasm file manually * fix: wrong file path * fix: trying out esmImport * fix: oups * fix: giving up * fix: await initialization * fix: still nothing * Revert "fix: still nothing" This reverts commit dcb9fe3837a32ec4149f41c9b8925ae0e2fbdb79. * fix: implement suggestions Co-authored-by: Eric Fennis <eric.fennis@gmail.com> * Update .github/workflows/pull-request.yml * Update .github/workflows/pull-request.yml * Update .github/workflows/pull-request.yml * Update .github/workflows/pull-request.yml * Update .github/workflows/pull-request.yml * Update .github/workflows/pull-request.yml * Update .github/workflows/pull-request.yml * Update .github/workflows/pull-request.yml * Update .github/workflows/pull-request.yml --------- Co-authored-by: Eric Fennis <eric.fennis@gmail.com>
36 lines
876 B
TypeScript
36 lines
876 B
TypeScript
import copy from 'rollup-plugin-copy';
|
|
import replace from '@rollup/plugin-replace';
|
|
|
|
export default defineNitroConfig({
|
|
preset: 'vercel-edge',
|
|
srcDir: '.vitepress',
|
|
routeRules: {
|
|
'/api/**': { cors: false },
|
|
},
|
|
rollupConfig: {
|
|
external: ['@resvg/resvg-wasm/index_bg.wasm', './index_bg.wasm?module'],
|
|
plugins: [
|
|
copy({
|
|
targets: [
|
|
{
|
|
src: './node_modules/@resvg/resvg-wasm/index_bg.wasm',
|
|
dest: './.vercel/output/functions/__nitro.func',
|
|
},
|
|
],
|
|
}),
|
|
replace({
|
|
include: ['./**/*.ts'],
|
|
'/* WASM_IMPORT */': 'import resvg_wasm from "./index_bg.wasm?module";',
|
|
delimiters: ['', ''],
|
|
preventAssignment: false,
|
|
}),
|
|
],
|
|
},
|
|
esbuild: {
|
|
options: {
|
|
jsxFactory: 'React.createElement',
|
|
jsxFragment: 'React.Fragment',
|
|
},
|
|
},
|
|
});
|