UNPKG

vite-plugin-font

Version:

An automatic Web Font optimization plugin that supports many platforms such as Vite, Next, Nuxt, and more.

9 lines (6 loc) 224 B
import { win32, posix } from 'path'; const normalizePathRegExp = new RegExp(`\\${win32.sep}`, "g"); function normalizePath(filename) { return filename.replace(normalizePathRegExp, posix.sep); } export { normalizePath };