Compare commits
2 Commits
4788434445
...
58f0427350
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
58f0427350 | ||
|
|
e3db26323b |
@@ -33,6 +33,17 @@ export default async function createLingChairServer() {
|
|||||||
res.sendFile(path.resolve(file!.getFilePath()))
|
res.sendFile(path.resolve(file!.getFilePath()))
|
||||||
file.updateLastUsedTime()
|
file.updateLastUsedTime()
|
||||||
})
|
})
|
||||||
|
// For client-side router
|
||||||
|
app.get(/.*/, (req, res, next) => {
|
||||||
|
if (
|
||||||
|
req.path.startsWith('/uploaded_files/')
|
||||||
|
|| req.path === '/config.json'
|
||||||
|
) {
|
||||||
|
return next()
|
||||||
|
}
|
||||||
|
|
||||||
|
res.sendFile(path.resolve(config.data_path + '/page_compiled/index.html'))
|
||||||
|
})
|
||||||
|
|
||||||
await fs.mkdir(config.data_path + '/upload_cache', { recursive: true })
|
await fs.mkdir(config.data_path + '/upload_cache', { recursive: true })
|
||||||
try {
|
try {
|
||||||
|
|||||||
Reference in New Issue
Block a user