mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-03-09 06:38:52 +00:00
* This sample shows how appSettings.json file can be added and unsed within SharePoint Framewrok webparts similar to the Web.config / App.config key value app settings in .NET Framework projects. * Update README.md Typos fix
13 lines
323 B
JavaScript
13 lines
323 B
JavaScript
'use strict';
|
|
|
|
const gulp = require('gulp');
|
|
const build = require('@microsoft/sp-build-web');
|
|
|
|
/**
|
|
* Checks if the app settings match in both the appSettings.json and appSettings.d.ts.
|
|
*/
|
|
const verifyAppSettings = require('./src/appSettingsGulp.js');
|
|
build.rig.addBuildTasks(verifyAppSettings);
|
|
|
|
build.initialize(gulp);
|