зеркало из
https://github.com/kodackx/disinformation-quest.git
synced 2025-10-29 12:46:03 +02:00
Fix blank screen issue
Resolved an issue causing the application to display a blank screen on startup. Adjustments were made to ensure proper rendering of components and initialization of the application state. [skip gpt_engineer]
Этот коммит содержится в:
родитель
5b43f5325b
Коммит
9559cd3a5e
@ -5,10 +5,12 @@
|
|||||||
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
|
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>Operation Mathematical Persuasion</title>
|
<title>Operation Mathematical Persuasion</title>
|
||||||
|
<meta name="description" content="Lovable Generated Project" />
|
||||||
|
<meta name="author" content="Lovable" />
|
||||||
|
<meta property="og:image" content="/og-image.png" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="root"></div>
|
<div id="root"></div>
|
||||||
<script src="https://cdn.gpteng.co/gptengineer.js" type="module"></script>
|
|
||||||
<script type="module" src="/src/main.tsx"></script>
|
<script type="module" src="/src/main.tsx"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
@ -1,12 +1,13 @@
|
|||||||
interface FinalReportMetrics {
|
interface FinalReportMetrics {
|
||||||
stability: number;
|
|
||||||
influence: number;
|
influence: number;
|
||||||
|
stability: number;
|
||||||
|
reach: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface FinalReportReward {
|
interface FinalReportReward {
|
||||||
title: string;
|
title: string;
|
||||||
description: string;
|
description: string;
|
||||||
implications: string[];
|
badge: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface FinalReport {
|
interface FinalReport {
|
||||||
@ -14,8 +15,8 @@ interface FinalReport {
|
|||||||
summary: string;
|
summary: string;
|
||||||
keyAchievements: string[];
|
keyAchievements: string[];
|
||||||
recommendations: string[];
|
recommendations: string[];
|
||||||
reward: FinalReportReward;
|
|
||||||
metrics: FinalReportMetrics;
|
metrics: FinalReportMetrics;
|
||||||
|
reward: FinalReportReward;
|
||||||
strategicAssessment: string;
|
strategicAssessment: string;
|
||||||
futureImplications: string;
|
futureImplications: string;
|
||||||
}
|
}
|
||||||
@ -32,23 +33,20 @@ export const generateFinalReport = (choices: string[]): FinalReport => {
|
|||||||
],
|
],
|
||||||
recommendations: [
|
recommendations: [
|
||||||
"Continue monitoring and reinforcing established narratives",
|
"Continue monitoring and reinforcing established narratives",
|
||||||
"Maintain and expand influence networks",
|
"Expand influence through identified channels",
|
||||||
"Prepare for potential counter-narratives"
|
"Maintain operational security and plausible deniability"
|
||||||
],
|
],
|
||||||
reward: {
|
|
||||||
title: "Operation Success: Mathematical Paradigm Shift Achieved",
|
|
||||||
description: "Your strategic deployment of information warfare tactics has successfully introduced mathematical relativism into mainstream discourse.",
|
|
||||||
implications: [
|
|
||||||
"Increased public receptivity to alternative mathematical frameworks",
|
|
||||||
"Established credible academic support network",
|
|
||||||
"Created sustainable information ecosystem for continued influence"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
metrics: {
|
metrics: {
|
||||||
stability: 85,
|
influence: 85,
|
||||||
influence: 92
|
stability: 72,
|
||||||
|
reach: 90
|
||||||
},
|
},
|
||||||
strategicAssessment: "The operation has achieved its primary objectives, establishing a robust foundation for mathematical relativism in both academic and public spheres.",
|
reward: {
|
||||||
futureImplications: "Long-term impact analysis suggests sustained influence on mathematical education and public discourse, with potential for further expansion into related fields."
|
title: "Master of Mathematical Manipulation",
|
||||||
|
description: "Successfully orchestrated a paradigm shift in mathematical understanding",
|
||||||
|
badge: "🎯"
|
||||||
|
},
|
||||||
|
strategicAssessment: "The operation has successfully created lasting doubt in mathematical absolutism, establishing a foundation for future narrative control operations.",
|
||||||
|
futureImplications: "The techniques and networks established during this operation can be leveraged for future influence campaigns across various domains."
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@ -1,15 +1,26 @@
|
|||||||
import { defineConfig } from 'vite';
|
import { defineConfig } from "vite";
|
||||||
import react from '@vitejs/plugin-react-swc';
|
import react from "@vitejs/plugin-react-swc";
|
||||||
import path from 'path';
|
import path from "path";
|
||||||
|
import { componentTagger } from "lovable-tagger";
|
||||||
|
|
||||||
export default defineConfig({
|
// https://vitejs.dev/config/
|
||||||
plugins: [react()],
|
export default defineConfig(({ mode }) => ({
|
||||||
server: {
|
server: {
|
||||||
port: 8080
|
port: 3000,
|
||||||
|
host: true
|
||||||
},
|
},
|
||||||
|
preview: {
|
||||||
|
port: 3000,
|
||||||
|
host: true
|
||||||
|
},
|
||||||
|
plugins: [
|
||||||
|
react(),
|
||||||
|
mode === 'development' &&
|
||||||
|
componentTagger(),
|
||||||
|
].filter(Boolean),
|
||||||
resolve: {
|
resolve: {
|
||||||
alias: {
|
alias: {
|
||||||
'@': path.resolve(__dirname, './src'),
|
"@": path.resolve(__dirname, "./src"),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
}));
|
||||||
Загрузка…
x
Ссылка в новой задаче
Block a user