mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
* fix(dev): fix next/image hostname error in nextjs * chore: update react 18 in nextjs example * chore: pnpm-lock.yaml
10 lines
171 B
JavaScript
10 lines
171 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
images: {
|
|
domains: ['assets.vercel.com'],
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|