diff options
author | Vendicated <vendicated@riseup.net> | 2022-09-08 22:25:21 +0200 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-09-08 22:25:21 +0200 |
commit | 6099179f0230e3c6eb449a2cd7f6a5c5d79201f2 (patch) | |
tree | 78d3eede2c9ca882481989523680de4c317032dd /build.mjs | |
parent | e52225304e47d92bf1b84f5a2c8e97ab57bd85a4 (diff) | |
download | Vencord-6099179f0230e3c6eb449a2cd7f6a5c5d79201f2.tar.gz Vencord-6099179f0230e3c6eb449a2cd7f6a5c5d79201f2.tar.bz2 Vencord-6099179f0230e3c6eb449a2cd7f6a5c5d79201f2.zip |
ViewIcons: Now opens icons in image viewer
Diffstat (limited to 'build.mjs')
-rwxr-xr-x | build.mjs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ const globPlugins = { continue; } const mod = `__pluginMod${i}`; - code += `import ${mod} from "./${files[i].replace(".ts", "")}";\n`; + code += `import ${mod} from "./${files[i].replace(/.tsx?$/, "")}";\n`; obj += `[${mod}.name]: ${mod},`; } code += `export default {${obj}}`; |