mirror of
https://github.com/usememos/memos.git
synced 2025-04-03 20:31:10 +02:00
fix: frontend build
This commit is contained in:
parent
e25792be9c
commit
57c00734e2
@ -14,7 +14,7 @@ import (
|
|||||||
"github.com/usememos/memos/store"
|
"github.com/usememos/memos/store"
|
||||||
)
|
)
|
||||||
|
|
||||||
//go:embed dist
|
//go:embed dist/*
|
||||||
var embeddedFiles embed.FS
|
var embeddedFiles embed.FS
|
||||||
|
|
||||||
type FrontendService struct {
|
type FrontendService struct {
|
||||||
@ -34,16 +34,8 @@ func (*FrontendService) Serve(_ context.Context, e *echo.Echo) {
|
|||||||
return util.HasPrefixes(c.Path(), "/api", "/memos.api.v1")
|
return util.HasPrefixes(c.Path(), "/api", "/memos.api.v1")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Use echo static middleware to serve the built dist folder.
|
// Route to serve the assets folder without HTML5 fallback.
|
||||||
// Reference: https://github.com/labstack/echo/blob/master/middleware/static.go
|
e.Group("/assets").Use(middleware.GzipWithConfig(middleware.GzipConfig{
|
||||||
e.Use(middleware.StaticWithConfig(middleware.StaticConfig{
|
|
||||||
HTML5: true,
|
|
||||||
Filesystem: getFileSystem("dist"),
|
|
||||||
Skipper: skipper,
|
|
||||||
}))
|
|
||||||
// Use echo gzip middleware to compress the response.
|
|
||||||
// Reference: https://echo.labstack.com/docs/middleware/gzip
|
|
||||||
e.Group("assets").Use(middleware.GzipWithConfig(middleware.GzipConfig{
|
|
||||||
Level: 5,
|
Level: 5,
|
||||||
}), func(next echo.HandlerFunc) echo.HandlerFunc {
|
}), func(next echo.HandlerFunc) echo.HandlerFunc {
|
||||||
return func(c echo.Context) error {
|
return func(c echo.Context) error {
|
||||||
@ -52,6 +44,14 @@ func (*FrontendService) Serve(_ context.Context, e *echo.Echo) {
|
|||||||
}
|
}
|
||||||
}, middleware.StaticWithConfig(middleware.StaticConfig{
|
}, middleware.StaticWithConfig(middleware.StaticConfig{
|
||||||
Filesystem: getFileSystem("dist/assets"),
|
Filesystem: getFileSystem("dist/assets"),
|
||||||
|
HTML5: false, // Disable fallback to index.html
|
||||||
|
}))
|
||||||
|
|
||||||
|
// Route to serve the main app with HTML5 fallback for SPA behavior.
|
||||||
|
e.Use(middleware.StaticWithConfig(middleware.StaticConfig{
|
||||||
|
Filesystem: getFileSystem("dist"),
|
||||||
|
HTML5: true, // Enable fallback to index.html
|
||||||
|
Skipper: skipper,
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
import mermaid from "mermaid";
|
|
||||||
import { useEffect, useRef } from "react";
|
import { useEffect, useRef } from "react";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
@ -7,18 +6,21 @@ interface Props {
|
|||||||
|
|
||||||
const MermaidBlock: React.FC<Props> = ({ content }: Props) => {
|
const MermaidBlock: React.FC<Props> = ({ content }: Props) => {
|
||||||
const mermaidDockBlock = useRef<null>(null);
|
const mermaidDockBlock = useRef<null>(null);
|
||||||
mermaid.initialize({ startOnLoad: false, theme: "default" });
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!mermaidDockBlock.current) {
|
// Dynamically import mermaid to ensure compatibility with Vite
|
||||||
return;
|
const initializeMermaid = async () => {
|
||||||
}
|
const mermaid = (await import("mermaid")).default;
|
||||||
|
mermaid.initialize({ startOnLoad: false, theme: "default" });
|
||||||
// Render mermaid when mounted.
|
if (mermaidDockBlock.current) {
|
||||||
mermaid.run({
|
mermaid.run({
|
||||||
nodes: [mermaidDockBlock.current],
|
nodes: [mermaidDockBlock.current],
|
||||||
});
|
});
|
||||||
});
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
initializeMermaid();
|
||||||
|
}, [content]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<pre ref={mermaidDockBlock} className="w-full p-2 whitespace-pre-wrap relative">
|
<pre ref={mermaidDockBlock} className="w-full p-2 whitespace-pre-wrap relative">
|
||||||
|
@ -34,4 +34,13 @@ export default defineConfig({
|
|||||||
"@/": `${resolve(__dirname, "src")}/`,
|
"@/": `${resolve(__dirname, "src")}/`,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
build: {
|
||||||
|
rollupOptions: {
|
||||||
|
output: {
|
||||||
|
entryFileNames: "app.[hash].js",
|
||||||
|
chunkFileNames: "assets/chunk-vendors.[hash].js",
|
||||||
|
assetFileNames: "assets/[name].[hash][extname]",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user