mirror of
https://github.com/soconnor0919/lewisburg-coffee.git
synced 2026-02-04 15:46:32 -05:00
17 lines
397 B
JavaScript
17 lines
397 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 = {
|
|
output: "export",
|
|
basePath: process.env.NODE_ENV === "production" ? "/lewisburg-coffee" : undefined,
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
};
|
|
|
|
export default config;
|