Я переношу приложение rails с sprockets
на webpacker
. У меня проблема с загрузкой пакетов в моем макете. Мне нужно вручную включить пакеты, которые включены в мой пакет. Этого следует ожидать или это можно исправить?
ошибка
Uncaught Error: Include d3.js (v3.0.3 or greater) and topojson on this page before creating a new map
at new l (datamaps.usa.min.js:1)
at (index):226
(index):298 Uncaught ReferenceError: shortcut is not defined
at (index):298
app / javascript / packs /client_application.js
require("jquery")
require("shortcut.js/shortcut")
require("topojson")
require("d3/d3.min")
require("js/d3_tip")
client.haml (не работает)
= javascript_pack_tag "client_application"
client.haml (работает)
= javascript_pack_tag "client_application"
= javascript_include_tag "shortcut.js/shortcut"
= javascript_include_tag "d3/d3.min"
= javascript_include_tag "topjson"