Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | import { fileURLToPath } from 'node:url'; import type { rspack } from '@esmx/rspack'; const ADD_IMPORT = ` import { useSSRContext } from 'vue'; function initImport () { const mixins = Array.isArray(__exports__.mixins) ? __exports__.mixins : []; mixins.push({ created () { const ctx = useSSRContext(); ctx?.importMetaSet?.add(import.meta); } }); __exports__.mixins = mixins; } initImport(); `; export default function (this: rspack.LoaderContext, text: string) { return text + ADD_IMPORT; } export const vue3ServerRenderLoader = fileURLToPath( import.meta.resolve(import.meta.url) ); |