From fd30aa17a87006432cb91c0189a2f48573d2d976 Mon Sep 17 00:00:00 2001 From: lharti <7027812+lharti@users.noreply.github.com> Date: Sat, 16 Nov 2024 10:45:20 +0100 Subject: [PATCH] build(web): enable react compiler (#124) * build(web): enable react compiler * chore(release): bump versions - jsonthing-web@0.6.2 --- apps/jsonthing-web/CHANGELOG.md | 8 ++++++++ apps/jsonthing-web/next.config.ts | 4 ++++ apps/jsonthing-web/package.json | 2 +- 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/apps/jsonthing-web/CHANGELOG.md b/apps/jsonthing-web/CHANGELOG.md index 22a1afa..79036e1 100644 --- a/apps/jsonthing-web/CHANGELOG.md +++ b/apps/jsonthing-web/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.6.2](https://github.com/lharti/jsonthing/compare/jsonthing-web@0.6.1...jsonthing-web@0.6.2) (2024-11-16) + +**Note:** Version bump only for package jsonthing-web + + + + + ## [0.6.1](https://github.com/lharti/jsonthing/compare/jsonthing-web@0.6.0...jsonthing-web@0.6.1) (2024-11-16) diff --git a/apps/jsonthing-web/next.config.ts b/apps/jsonthing-web/next.config.ts index c9c24cb..b1cb5a5 100644 --- a/apps/jsonthing-web/next.config.ts +++ b/apps/jsonthing-web/next.config.ts @@ -4,6 +4,10 @@ const nextConfig: NextConfig = { output: 'standalone', reactStrictMode: true, + experimental: { + reactCompiler: true, + }, + images: { remotePatterns: [ { diff --git a/apps/jsonthing-web/package.json b/apps/jsonthing-web/package.json index 38f4709..21aff78 100644 --- a/apps/jsonthing-web/package.json +++ b/apps/jsonthing-web/package.json @@ -1,6 +1,6 @@ { "name": "jsonthing-web", - "version": "0.6.1", + "version": "0.6.2", "private": true, "scripts": { "dev": "next dev --turbo",