@brainfish-ai/carp 0.1.14 → 0.1.16

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brainfish-ai/carp",
3
- "version": "0.1.14",
3
+ "version": "0.1.16",
4
4
  "description": "Documentation framework for developers. Write docs in MDX, preview locally, deploy to Brainfish.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,5 +1,4 @@
1
1
  import type { NextConfig } from "next";
2
- import path from "path";
3
2
 
4
3
  const nextConfig: NextConfig = {
5
4
  /* config options here */
@@ -9,15 +8,6 @@ const nextConfig: NextConfig = {
9
8
  '@': __dirname,
10
9
  },
11
10
  },
12
- // Configure webpack to resolve @ alias (for non-turbopack builds)
13
- webpack: (config, { isServer }) => {
14
- config.resolve = config.resolve || {};
15
- config.resolve.alias = {
16
- ...config.resolve.alias,
17
- '@': path.resolve(__dirname),
18
- };
19
- return config;
20
- },
21
11
  // Disable compression to allow SSE streaming to work properly
22
12
  // Without this, Next.js buffers responses and sends them all at once
23
13
  compress: false,