Initial commit

This commit is contained in:
Torsten Brendgen
2026-04-13 10:22:03 +02:00
commit 3b9edbc6d5
19 changed files with 17930 additions and 0 deletions

18
config/config.json Normal file
View File

@@ -0,0 +1,18 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/config.2.0.schema.json",
"version": "2.0",
"bundles": {
"portal-settings-application-customizer": {
"components": [
{
"entrypoint": "./lib/extensions/portalSettings/PortalSettingsApplicationCustomizer.js",
"manifest": "./src/extensions/portalSettings/PortalSettingsApplicationCustomizer.manifest.json"
}
]
}
},
"externals": {},
"localizedResources": {
"PortalSettingsApplicationCustomizerStrings": "lib/extensions/portalSettings/loc/{locale}.js"
}
}

4
config/copy-assets.json Normal file
View File

@@ -0,0 +1,4 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/copy-assets.schema.json",
"deployCdnPath": "temp/deploy"
}

View File

@@ -0,0 +1,7 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/deploy-azure-storage.schema.json",
"workingDir": "./release/assets/",
"account": "[account]",
"container": "portal-settings",
"accessKey": "[access-key]"
}

View File

@@ -0,0 +1,29 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json",
"solution": {
"name": "portal-settings-client-side-solution",
"id": "1c98e32d-bb7b-43b7-9625-074d6e4ea286",
"version": "1.0.0.0",
"includeClientSideAssets": true,
"skipFeatureDeployment": false,
"features": [
{
"title": "Portal Settings",
"description": "Provisioniert die zentrale Settings-Seite fuer aktive Portal-Erweiterungen.",
"id": "57bd9daf-48f9-49e2-aebd-11b15a0b5e93",
"version": "1.0.0.0",
"assets": {
"elementManifests": [
"elements.xml"
],
"elementFiles": [
"PortalSettings.aspx"
]
}
}
]
},
"paths": {
"zippedPackage": "solution/portal-settings.sppkg"
}
}

16
config/serve.json Normal file
View File

@@ -0,0 +1,16 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json",
"port": 4321,
"https": true,
"serveConfigurations": {
"default": {
"pageUrl": "http://clshp001/SitePages/PortalSettings.aspx",
"customActions": {
"cd6b9e8d-07b9-4468-b230-6bb35acd9a5f": {
"location": "ClientSideExtension.ApplicationCustomizer",
"properties": {}
}
}
}
}
}

View File

@@ -0,0 +1,4 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/write-manifests.schema.json",
"cdnBasePath": "<!-- PATH TO CDN -->"
}