前后端分离,简易动态博客。前端使用Vue3 + ts + Vite构建,使用bytemdmarkdown编辑器、掘金markdown主题。
- 自定义__菜单(分类)
- 自定义__标签
- 自定义__主题
- 暗黑模式
- 关联账号
ReferenceError: Buffer is not defined
vite.config.js
使用 vite-plugin-node-polyfills
plugins: [
nodePolyfills(
{
globals: {
Buffer: true, // can also be 'build', 'dev', or false
},
}
)
]