From 0fb1ae7a9362891ce3554e207c3aa40d831eed35 Mon Sep 17 00:00:00 2001 From: Teddy Ward Date: Mon, 26 Aug 2024 16:45:22 -0500 Subject: [PATCH] fix: add licenses to ts files --- .../hello-world-react-ts-vite/src/constants.ts | 14 ++++++++++++++ .../hello-world-react-ts-vite/vite.config.ts | 14 ++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/addons-web-sdk/samples/hello-world-react-ts-vite/src/constants.ts b/addons-web-sdk/samples/hello-world-react-ts-vite/src/constants.ts index a7241d4..fc62dd2 100644 --- a/addons-web-sdk/samples/hello-world-react-ts-vite/src/constants.ts +++ b/addons-web-sdk/samples/hello-world-react-ts-vite/src/constants.ts @@ -1,3 +1,17 @@ +// Copyright 2024 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + // TODO: Make sure that you modify these constants, if you fork this! export const CLOUD_PROJECT_NUMBER: string = "12345678910"; export const MAIN_STAGE_URL: string = "https://googleworkspace.github.io/meet/hello-world-react-ts-vite/MainStage.html" diff --git a/addons-web-sdk/samples/hello-world-react-ts-vite/vite.config.ts b/addons-web-sdk/samples/hello-world-react-ts-vite/vite.config.ts index dcadce8..29649b7 100644 --- a/addons-web-sdk/samples/hello-world-react-ts-vite/vite.config.ts +++ b/addons-web-sdk/samples/hello-world-react-ts-vite/vite.config.ts @@ -1,3 +1,17 @@ +// Copyright 2024 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + import { resolve } from 'path'; import { defineConfig } from 'vite'; import react from '@vitejs/plugin-react';