switched over to nextjs
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import type { NextConfig } from "next";
|
||||
|
||||
const isProd = process.env.NODE_ENV === "production";
|
||||
|
||||
const internalHost = process.env.TAURI_DEV_HOST || "localhost";
|
||||
|
||||
const nextConfig: NextConfig = {
|
||||
/* config options here */
|
||||
reactCompiler: true,
|
||||
output: "export",
|
||||
|
||||
images: {
|
||||
unoptimized: true,
|
||||
},
|
||||
|
||||
assetPrefix: isProd ? undefined : `http://${internalHost}:3000`,
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
Reference in New Issue
Block a user