vitest/examples/nextjs/next.config.js
irvile 9dd26e269e
docs: update nextjs example (#1174)
* fix(dev): fix next/image hostname error in nextjs

* chore: update react 18 in nextjs example

* chore: pnpm-lock.yaml
2022-04-21 12:48:29 +08:00

10 lines
171 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
domains: ['assets.vercel.com'],
},
}
module.exports = nextConfig