@objectdocs/site 0.2.8 → 0.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/lib/source.ts +1 -1
- package/next.config.mjs +1 -0
- package/package.json +1 -1
- package/tsconfig.json +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @objectdocs/site
|
|
2
2
|
|
|
3
|
+
## 0.2.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- feat: enable standalone output mode for better Vercel/Docker support
|
|
8
|
+
|
|
9
|
+
## 0.2.9
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- fix: add .source path alias to tsconfig.json to ensure generated files can be resolved
|
|
14
|
+
|
|
3
15
|
## 0.2.8
|
|
4
16
|
|
|
5
17
|
## 0.2.7
|
package/lib/source.ts
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
import { loader } from 'fumadocs-core/source';
|
|
10
|
-
import { docs, meta } from '../.source/server';
|
|
10
|
+
import { docs, meta } from '../.source/server'; // Relative import to .source in root
|
|
11
11
|
import { toFumadocsSource } from 'fumadocs-mdx/runtime/server';
|
|
12
12
|
import { i18n } from './i18n';
|
|
13
13
|
|
package/next.config.mjs
CHANGED
package/package.json
CHANGED