Some interactive elements (branch dropdowns, the user menu, the clone popover) need JavaScript. Reading repositories, issues, patches, and the docs works without it; submitting forms also works as long as you can reach them via direct links.
Radish
alpha
Explore
Docs
Sign in
r
radicle-explorer
rad:z4V1sjrXqjvFdnCUbxPFqd5p4DtH5
Radicle web interface
Clone
Radicle
Git (anonymous pull)
Log in
to clone via SSH
Source
Commits
2400
Issues
36
Patches
365
Jobs
Commits
›
841ce0646f9290632249cfeb7ea2cd9e284df702
Add build outDir configuration
Sebastian Martinez
committed
4 years ago
commit 841ce0646f9290632249cfeb7ea2cd9e284df702
parent
21b45f6b1e7e094ff959aff2b4aa3b0d6fbc0ebe
1 file changed
+3
-0
modified
vite.config.ts
@@ -13,6 +13,9 @@ const config: UserConfig = {
"@app": path.resolve("./src"),
},
},
+
build: {
+
outDir: "build"
+
}
};
export default config;