@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 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
@@ -15,6 +15,7 @@ const nextConfig = {
15
15
  reactStrictMode: true,
16
16
  distDir: '.next',
17
17
  images: { unoptimized: true },
18
+ output: 'standalone',
18
19
  transpilePackages: ['@objectdocs/site'],
19
20
  };
20
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectdocs/site",
3
- "version": "0.2.8",
3
+ "version": "0.2.10",
4
4
  "description": "ObjectDocs Site Template",
5
5
  "repository": {
6
6
  "type": "git",
package/tsconfig.json CHANGED
@@ -24,6 +24,9 @@
24
24
  "paths": {
25
25
  "@/*": [
26
26
  "./*"
27
+ ],
28
+ ".source/*": [
29
+ "./.source/*"
27
30
  ]
28
31
  },
29
32
  "target": "ES2017"