mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-24 07:44:03 +08:00
This is already used for more than just themes, and we plan to extend its usage even further
10 lines
238 B
JavaScript
Vendored
10 lines
238 B
JavaScript
Vendored
export default function discourseExternalLoader() {
|
|
return {
|
|
name: "discourse-external-loader",
|
|
async resolveId(source) {
|
|
if (!source.startsWith(".")) {
|
|
return { id: source, external: true };
|
|
}
|
|
},
|
|
};
|
|
}
|