rsnext/examples/using-preact/next.config.js
Henrik Wenz 588a61b432
[Docs] Migrate using-preact example to typescript (#40295)
## Documentation / Examples

- [x] Make sure the linting passes by running `pnpm lint`
- [x] The examples guidelines are followed from [our contributing
doc](https://github.com/vercel/next.js/blob/canary/contributing.md#adding-examples)
2022-09-07 16:59:49 -07:00

8 lines
199 B
JavaScript

const withPreact = require('next-plugin-preact')
/** @type {import('next').NextConfig} */
const nextConfig = {
/* regular next.js config options here */
}
module.exports = withPreact(nextConfig)