mirror of
https://github.com/seigler/generative
synced 2025-07-26 06:46:10 +00:00
6 lines
191 B
JavaScript
6 lines
191 B
JavaScript
document.addEventListener('DOMContentLoaded', function() {
|
|
let path = document.location.pathname.split('/');
|
|
if (path.length > 1) {
|
|
require(`${path[path.length - 2]}/index`);
|
|
}
|
|
});
|