+
+
+ {{ localeProperties }}
+
+
+
+
diff --git a/specs/issues/2338.spec.ts b/specs/issues/2338.spec.ts
new file mode 100644
index 000000000..e17c36a1a
--- /dev/null
+++ b/specs/issues/2338.spec.ts
@@ -0,0 +1,21 @@
+import { test, expect, describe } from 'vitest'
+import { fileURLToPath } from 'node:url'
+import { setup, url, createPage } from '../utils'
+import { getData } from '../helper'
+
+describe('#2338', async () => {
+ await setup({
+ rootDir: fileURLToPath(new URL(`../fixtures/issues/2338`, import.meta.url))
+ })
+
+ test('should be extened API', async () => {
+ const home = url('/')
+ const page = await createPage()
+ await page.goto(home)
+
+ const globalData = await getData(page, '#global')
+ expect(globalData.code).toEqual('nl')
+ const localeData = await getData(page, '#local')
+ expect(localeData.code).toEqual('nl')
+ })
+})