mirror of
https://github.com/alex8088/electron-vite.git
synced 2025-04-06 04:05:44 +08:00
22 lines
568 B
TypeScript
22 lines
568 B
TypeScript
import type { Plugin } from 'vite'
|
|
|
|
export default function importMetaPlugin(): Plugin {
|
|
return {
|
|
name: 'vite:import-meta',
|
|
apply: 'build',
|
|
enforce: 'pre',
|
|
resolveImportMeta(property, { format }): string | null {
|
|
if (property === 'url' && format === 'cjs') {
|
|
return `require("url").pathToFileURL(__filename).href`
|
|
}
|
|
if (property === 'filename' && format === 'cjs') {
|
|
return `__filename`
|
|
}
|
|
if (property === 'dirname' && format === 'cjs') {
|
|
return `__dirname`
|
|
}
|
|
return null
|
|
}
|
|
}
|
|
}
|