diff --git a/src/libslic3r/Format/SLAArchiveWriter.cpp b/src/libslic3r/Format/SLAArchiveWriter.cpp
index 92f5fe3ec..b28c2c680 100644
--- a/src/libslic3r/Format/SLAArchiveWriter.cpp
+++ b/src/libslic3r/Format/SLAArchiveWriter.cpp
@@ -29,6 +29,10 @@ static const std::map<std::string, ArchiveEntry> REGISTERED_ARCHIVES {
         "SL1SVG",
         { "sl1_svg",  [] (const auto &cfg) { return std::make_unique<SL1_SVGArchive>(cfg); } }
     },
+    {
+        "SL2",
+        { "sl1_svg",  [] (const auto &cfg) { return std::make_unique<SL1_SVGArchive>(cfg); } }
+    },
     {
         "pwmx",
         { "pwmx", [] (const auto &cfg) { return std::make_unique<PwmxArchive>(cfg); } }