We are kinda forced since Google treat us as lab rats
brave://settings/shields/filters
Make sure developer mode is on, add this custom filter:
<script setup lang="ts"> | |
import type { FetchResult } from '#app' | |
type Data = FetchResult<'/api/something', 'get'> | |
const { data } = await useFetch('/api/something') | |
</script> |
import type { Config } from 'tailwindcss' | |
import typography from '@tailwindcss/typography' | |
export default <Partial<Config>>{ | |
theme: { | |
extend: { | |
typography: { | |
DEFAULT: { | |
css: { | |
'--tw-prose-body': 'hsl(var(--foreground))', |
// plugins/decimal-payload.ts | |
import { Decimal } from 'decimal.js' | |
export default definePayloadPlugin(() => { | |
definePayloadReducer('Decimal', data => Decimal.isDecimal(data) && data.toJSON()) | |
definePayloadReviver('Decimal', data => new Decimal(data)) | |
}) |
namespace System; | |
using System.Text; | |
using System.Threading; | |
public static class ConsoleEx | |
{ | |
/// <summary> | |
/// Keep track of concurrent writing. | |
/// </summary> |