mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-05 17:15:04 -05:00
10 lines
230 B
JavaScript
10 lines
230 B
JavaScript
$('head').prepend([
|
|
'<link rel="stylesheet" href="/style.css">',
|
|
// '<link rel="stylesheet" href="/fonts.css">',
|
|
// '<link rel="stylesheet" href="/ui.css">',
|
|
].join(''))
|
|
|
|
$(function () {
|
|
require('app').launch();
|
|
});
|