clawport-ui 0.2.3 → 0.2.4

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.
Files changed (2) hide show
  1. package/next.config.mjs +8 -1
  2. package/package.json +1 -1
package/next.config.mjs CHANGED
@@ -1,6 +1,13 @@
1
+ import { dirname } from "node:path";
2
+ import { fileURLToPath } from "node:url";
3
+
4
+ const __dirname = dirname(fileURLToPath(import.meta.url));
5
+
1
6
  /** @type {import('next').NextConfig} */
2
7
  const nextConfig = {
3
- /* config options here */
8
+ turbopack: {
9
+ root: __dirname,
10
+ },
4
11
  };
5
12
 
6
13
  export default nextConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawport-ui",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Open-source dashboard for managing, monitoring, and chatting with your OpenClaw AI agents.",
5
5
  "homepage": "https://clawport.dev",
6
6
  "repository": {