0
我可以get the relative file path與__filename
,當然我可以破解它以獲得一些JS-fu的基名,但我想在編譯時做到這一點。如何獲取沒有路徑和擴展名的webpack的當前文件名?
DefinePlugin
會讓我像我想要的那樣注入一些全局變量,但AFAICT我不能基於當前文件有一個「動態」全局。
那麼我該如何做到這一點?
例如鑑於我在文件assets/scripts/lib/components/bpm/RecordAttendancePopup.jsx
,我怎麼能讓webpack注入一個常數,如__basename
,其值爲"RecordAttendancePopup"
?