diff --git a/index.html b/index.html index 9f59575..853b3b3 100644 --- a/index.html +++ b/index.html @@ -2,16 +2,13 @@ + - disinformation-quest - - - + Operation Mathematical Persuasion -
- + \ No newline at end of file diff --git a/src/components/game/constants/finalReport.ts b/src/components/game/constants/finalReport.ts index 9df6af0..df2f1a3 100644 --- a/src/components/game/constants/finalReport.ts +++ b/src/components/game/constants/finalReport.ts @@ -25,9 +25,10 @@ export const generateFinalReport = (choices: string[]): FinalReport => { title: "Operation Completion Report", summary: "Mission accomplished with notable success in reshaping mathematical understanding.", keyAchievements: [ - "Established significant presence across multiple platforms", - "Created lasting impact on mathematical discourse", - "Successfully introduced alternative mathematical frameworks" + "Established credible alternative mathematical framework", + "Built network of academic supporters", + "Created sustainable information ecosystem", + "Achieved significant public engagement" ], recommendations: [ "Continue monitoring and reinforcing established narratives", diff --git a/vite.config.ts b/vite.config.ts index acadeaa..311ce0e 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,26 +1,15 @@ -import { defineConfig } from "vite"; -import react from "@vitejs/plugin-react-swc"; -import path from "path"; -import { componentTagger } from "lovable-tagger"; +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react-swc'; +import path from 'path'; -// https://vitejs.dev/config/ -export default defineConfig(({ mode }) => ({ +export default defineConfig({ + plugins: [react()], server: { - port: 3000, - host: true + port: 8080 }, - preview: { - port: 3000, - host: true - }, - plugins: [ - react(), - mode === 'development' && - componentTagger(), - ].filter(Boolean), resolve: { alias: { - "@": path.resolve(__dirname, "./src"), + '@': path.resolve(__dirname, './src'), }, }, -})); +}); \ No newline at end of file