使用 Rails 7 并导入地图。尝试使用一些自定义 JS 导入文件夹。
# config/importmap.rb
pin_all_from "app/javascript/custom", under: "custom"
# app/javascript/application.js
import "custom"
Uncaught TypeError: Failed to resolve module specifier "custom"
在 Chrome 和FirefoxUncaught Error: Unable to resolve specifier 'custom' from [shim]
上提供
有趣import "custom/script"
的是工作正常。
我究竟做错了什么?