diff --git a/tsconfig.json b/tsconfig.json index 14f86aa..4f9b017 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,7 +15,6 @@ "moduleResolution": "node", "resolveJsonModule": true, "isolatedModules": true, - "sourceMap": false, "allowUnreachableCode": false, "allowUnusedLabels": false, "checkJs": true, diff --git a/vite.config.mts b/vite.config.mts index eb2cff0..5f15811 100644 --- a/vite.config.mts +++ b/vite.config.mts @@ -3,6 +3,9 @@ import react from '@vitejs/plugin-react'; export default defineConfig({ plugins: [react()], + build: { + sourcemap: false, + }, base: '/', server: { port: 3000,