@gallop.software/studio 2.0.3 → 2.0.5
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/app/layout.tsx +1 -5
- package/next.config.mjs +2 -10
- package/package.json +1 -1
package/app/layout.tsx
CHANGED
|
@@ -1,17 +1,13 @@
|
|
|
1
1
|
/** @jsxRuntime automatic */
|
|
2
2
|
/** @jsxImportSource react */
|
|
3
|
-
import type { Metadata } from 'next'
|
|
4
|
-
import type { ReactNode } from 'react'
|
|
5
3
|
|
|
6
|
-
export const metadata
|
|
4
|
+
export const metadata = {
|
|
7
5
|
title: 'Studio - Media Manager',
|
|
8
6
|
description: 'Manage images and media files for your project',
|
|
9
7
|
}
|
|
10
8
|
|
|
11
9
|
export default function RootLayout({
|
|
12
10
|
children,
|
|
13
|
-
}: {
|
|
14
|
-
children: ReactNode
|
|
15
11
|
}) {
|
|
16
12
|
return (
|
|
17
13
|
<html lang="en">
|
package/next.config.mjs
CHANGED
|
@@ -13,16 +13,8 @@ const nextConfig = {
|
|
|
13
13
|
NEXT_PUBLIC_STUDIO_WORKSPACE: process.env.STUDIO_WORKSPACE || process.cwd(),
|
|
14
14
|
},
|
|
15
15
|
|
|
16
|
-
// Transpile the src folder
|
|
17
|
-
transpilePackages: ['./src'],
|
|
18
|
-
|
|
19
|
-
// Enable SWC minification
|
|
20
|
-
swcMinify: true,
|
|
21
|
-
|
|
22
|
-
// Experimental settings for better TypeScript handling
|
|
23
|
-
experimental: {
|
|
24
|
-
// Improve TypeScript compilation
|
|
25
|
-
},
|
|
16
|
+
// Transpile the src folder (not needed since we use compiled dist)
|
|
17
|
+
// transpilePackages: ['./src'],
|
|
26
18
|
}
|
|
27
19
|
|
|
28
20
|
export default nextConfig
|
package/package.json
CHANGED