Skip to content

Commit e940333

Browse files
committed
working
1 parent f7a5014 commit e940333

File tree

163 files changed

+16928
-13484
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

163 files changed

+16928
-13484
lines changed

src/.template.config/template.json

Lines changed: 21 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,23 @@
11
{
2-
"$schema": "http://json.schemastore.org/template",
3-
"author": "Anto Subash",
4-
"classifications": [
5-
"React",
6-
"ABP",
7-
"Typescript"
8-
],
9-
"identity": "Anto.Abp.React.Template",
10-
"sourceName": "abpreact",
11-
"name": "An ABP React Template",
12-
"description": "An ABP React Template",
13-
"tags": {
14-
"language": "typescript",
15-
"type": "item"
16-
},
17-
"shortName": "abp-react",
18-
"preferNameDirectory": true,
19-
"symbols": {
20-
"apiUrl": {
21-
"description": "API URL",
22-
"type": "parameter",
23-
"replaces": "abp.antosubash.com",
24-
"defaultValue": "your-api-name.com"
25-
}
2+
"$schema": "http://json.schemastore.org/template",
3+
"author": "Anto Subash",
4+
"classifications": ["React", "ABP", "Typescript"],
5+
"identity": "Anto.Abp.React.Template",
6+
"sourceName": "abpreact",
7+
"name": "An ABP React Template",
8+
"description": "An ABP React Template",
9+
"tags": {
10+
"language": "typescript",
11+
"type": "item"
12+
},
13+
"shortName": "abp-react",
14+
"preferNameDirectory": true,
15+
"symbols": {
16+
"apiUrl": {
17+
"description": "API URL",
18+
"type": "parameter",
19+
"replaces": "abp.antosubash.com",
20+
"defaultValue": "your-api-name.com"
2621
}
27-
}
22+
}
23+
}

src/CHANGELOG.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -776,9 +776,6 @@
776776

777777
- Anto Subash ([@antosubash](http://github.com/antosubash))
778778

779-
780-
781-
782779
## v1.0.1
783780

784781
[compare changes](https://github.com/antosubash/abp-react/compare/1.0.0...v1.0.1)

src/next.config.mjs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
/** @type {import('next').NextConfig} */
22
const nextConfig = {
33
output: 'standalone',
4+
images: {
5+
remotePatterns: [
6+
{
7+
protocol: 'https',
8+
hostname: 'picsum.photos',
9+
port: '',
10+
pathname: '/**',
11+
},
12+
],
13+
},
414
}
515

616
export default nextConfig

src/openapi-ts.config.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
import { defineConfig, defaultPlugins } from '@hey-api/openapi-ts';
1+
import { defaultPlugins, defineConfig } from '@hey-api/openapi-ts'
22

33
export default defineConfig({
4-
input: 'https://abp.antosubash.com/swagger/v1/swagger.json',
5-
output: 'src/client',
6-
plugins: [
7-
...defaultPlugins,
8-
'@hey-api/client-fetch',
9-
{
10-
name: '@hey-api/typescript',
11-
// readOnlyWriteOnlyBehavior: 'off',
12-
},
13-
],
14-
});
4+
input: 'https://abp.antosubash.com/swagger/v1/swagger.json',
5+
output: 'src/client',
6+
plugins: [
7+
...defaultPlugins,
8+
'@hey-api/client-fetch',
9+
{
10+
name: '@hey-api/typescript',
11+
// readOnlyWriteOnlyBehavior: 'off',
12+
},
13+
],
14+
})

0 commit comments

Comments
 (0)