const fs = require('fs'); const path = require('path'); const targetPath = path.join(__dirname, 'src/views/pages/marketing/targetologist/TargetologistDashboard.vue'); if (!fs.existsSync(targetPath)) process.exit(1); let content = fs.readFileSync(targetPath, 'utf8'); const newStyle = ``; const startIndex = content.indexOf('') + ''.length; if (startIndex !== -1 && endIndex !== -1) { const updatedContent = content.substring(0, startIndex) + newStyle + content.substring(endIndex); fs.writeFileSync(targetPath, updatedContent); console.log('TargetologistDashboard CSS updated successfully!'); } else { fs.writeFileSync(targetPath, content + '\n' + newStyle); console.log('Appended style to TargetologistDashboard'); }