Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
hermanwenhe committed Dec 2, 2024
2 parents 66aa5fe + 3e92d6a commit b856857
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
3 changes: 3 additions & 0 deletions hello-world-bot-with-tab/tab/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ import fs from "fs";

export default defineConfig({
plugins: [react()],
define: {
global: 'globalThis',
},
server: {
port: 53000,
https: {
Expand Down
3 changes: 3 additions & 0 deletions hello-world-teams-tab-and-office-add-in/tab/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ import fs from "fs";

export default defineConfig({
plugins: [react()],
define: {
global: 'globalThis',
},
server: {
port: 53000,
https: {
Expand Down
3 changes: 3 additions & 0 deletions intelligent-data-chart-generator/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ import fs from "fs";

export default defineConfig({
plugins: [react()],
define: {
global: 'globalThis',
},
server: {
port: 53000,
https: {
Expand Down
4 changes: 3 additions & 1 deletion team-central-dashboard/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ import fs from "fs";

export default defineConfig({
plugins: [react()],
define: {
global: 'globalThis',
},
server: {
port: 53000,
// if you are using SSL
https: {
cert: process.env.SSL_CRT_FILE ? fs.readFileSync(process.env.SSL_CRT_FILE) : undefined,
key: process.env.SSL_KEY_FILE ? fs.readFileSync(process.env.SSL_KEY_FILE) : undefined,
Expand Down

0 comments on commit b856857

Please sign in to comment.