Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ Our versioning strategy is as follows:

### 🧹 Chores

* `[create-content-sdk-app]` Remove beta from files and paths in nextjs-app-router template ([#321](https://github.com/Sitecore/content-sdk/pull/321))
* `[react]` Disable variant generation mode for server components in Design Studio ([#320](https://github.com/Sitecore/content-sdk/pull/320))


## 1.3.0

### 🎉 New Features & Improvements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { NextjsAppRouterArgs } from './args';
export default class NextjsAppRouterInitializer implements Initializer {
async init(args: NextjsAppRouterArgs) {
const answers = await inquirer.prompt<NextjsAppRouterAnswer>(prompts, args);
const templatePath = path.resolve(__dirname, '../../templates/nextjs-app-router (beta)');
const templatePath = path.resolve(__dirname, '../../templates/nextjs-app-router');

await transform(templatePath, { ...args, ...answers });

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sitecore Content SDK Next.js App Router Sample Application (beta)
# Sitecore Content SDK Next.js App Router Sample Application

<!---
@TODO: Update link with appropriate page when avaiable
Expand Down
Loading