Код: Выделить всё
export class EntryPoint {
static run() {
...
}
}
Код: Выделить всё
window.onload = function() {
EntryPoint.run();
}
Добавлено: файл конфигурации Webpack.
Подробнее здесь: https://stackoverflow.com/questions/343 ... script-tag
Код: Выделить всё
export class EntryPoint {
static run() {
...
}
}
Код: Выделить всё
window.onload = function() {
EntryPoint.run();
}