mirror of
https://github.com/soconnor0919/pixel-refresh.git
synced 2026-03-23 11:47:53 -04:00
17 lines
342 B
JavaScript
17 lines
342 B
JavaScript
/**
|
|
* Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation. This is especially useful
|
|
* for Docker builds.
|
|
*/
|
|
import "./src/env.js";
|
|
|
|
/** @type {import("next").NextConfig} */
|
|
const config = {
|
|
transpilePackages: [
|
|
"@react-three/fiber",
|
|
"@react-three/drei",
|
|
"@react-three/xr",
|
|
],
|
|
};
|
|
|
|
export default config;
|