1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Attempt to implement date-fns internalization

This commit is contained in:
ferferga 2020-03-26 13:53:30 +01:00
parent cbe3cbe221
commit 1656e73adf
3 changed files with 17 additions and 2 deletions

View file

@ -114,3 +114,14 @@ var polyfill = require("@babel/polyfill/dist/polyfill");
_define("polyfill", function () {
return polyfill;
});
// Date-FNS
var date_fns = require("date-fns");
_define("date-fns", function () {
return date_fns;
});
var date_fns_locale = require("date-fns/locale");
_define("date-fns/locale", function () {
return date_fns_locale;
});