tuono-labs/tuono
 Watch   
 Star   
 Fork   
8 days ago
tuono

v0.17.6

What's Changed

Full Changelog: https://github.com/tuono-labs/tuono/compare/v0.17.5...v0.17.6

11 days ago
tuono

v0.17.5

What's Changed

Full Changelog: https://github.com/tuono-labs/tuono/compare/v0.17.4...v0.17.5

13 days ago
tuono

v0.17.4

What's Changed

New configuration

import type { TuonoConfig } from 'tuono/config'

const config: TuonoConfig = {
  server: {
    host: 'localhost',
    port: 3000,
  },
}

export default config

New Contributors

Full Changelog: https://github.com/tuono-labs/tuono/compare/v0.17.3...v0.17.4

17 days ago
tuono

v0.17.3

What's Changed

Breaking change

Now the root __layout.tsx component requires to import <TuonoScript /> in the html body

import type { ReactNode, JSX } from 'react'
import { TuonoScripts } from 'tuono'

interface RootLayoutProps {
  children: ReactNode
}

export default function RootLayout({ children }: RootLayoutProps): JSX.Element {
  return (
    <html>
      <head>
      </head>
      <body>
        {children}
        <TuonoScripts />
      </body>
    </html>
  )
}

New Contributors

Full Changelog: https://github.com/tuono-labs/tuono/compare/v0.17.2...v0.17.3

18 days ago
tuono

v0.17.2

What's Changed

Full Changelog: https://github.com/tuono-labs/tuono/compare/v0.17.1...v0.17.2

20 days ago
tuono

v0.17.1

What's Changed

New Contributors

Full Changelog: https://github.com/tuono-labs/tuono/compare/v0.17.0...v0.17.1

2025-01-04 00:08:18
tuono

v0.17.0

What's Changed

Full Changelog: https://github.com/tuono-labs/tuono/compare/v0.16.9...v0.17.0

2024-12-24 23:20:55
tuono

v0.16.9

What's Changed

New Contributors

Full Changelog: https://github.com/tuono-labs/tuono/compare/v0.16.8...v0.16.9

2024-12-24 18:57:21
tuono

v0.16.8

What's Changed

Full Changelog: https://github.com/tuono-labs/tuono/compare/v0.16.7...v0.16.8

2024-12-24 01:32:15
tuono

v0.16.7

What's Changed

New Contributors

Full Changelog: https://github.com/tuono-labs/tuono/compare/v0.16.6...v0.16.7