create-smoodly-app 0.0.11 → 0.0.12

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": "create-smoodly-app",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "description": "Create a Smoodly site: a fresh Next.js app with the admin mounted, a Supabase schema, an env file and a first editor.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -1,5 +1,5 @@
1
1
  import type { NextConfig } from "next";
2
- import { smoodlyImages } from "smoodly/image";
2
+ import { smoodlyImages } from "smoodly/image/config";
3
3
 
4
4
  // next/image may only optimize from the Supabase host named in SMOODLY_URL
5
5
  // (a local stack also needs Next's local-IP allowance; the helper sets it).
@@ -14,7 +14,7 @@
14
14
  "next": "^16.3.4",
15
15
  "react": "^19",
16
16
  "react-dom": "^19",
17
- "smoodly": "0.0.11"
17
+ "smoodly": "0.0.12"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@next/env": "^16.3.4",
@@ -1,6 +1,6 @@
1
1
  import type { NextConfig } from "next";
2
2
  import createNextIntlPlugin from "next-intl/plugin";
3
- import { smoodlyImages } from "smoodly/image";
3
+ import { smoodlyImages } from "smoodly/image/config";
4
4
 
5
5
  const withNextIntl = createNextIntlPlugin();
6
6
 
@@ -14,7 +14,7 @@
14
14
  "next": "^16.3.4",
15
15
  "react": "^19",
16
16
  "react-dom": "^19",
17
- "smoodly": "0.0.11",
17
+ "smoodly": "0.0.12",
18
18
  "next-intl": "^4.14.2"
19
19
  },
20
20
  "devDependencies": {