feat: 初始化进销存数据开放平台项目

初始化完整的前后端项目结构,包含ThinkPHP后端API服务和Next.js前端管理系统,添加基础配置、中间件、模型、路由等核心代码,以及项目文档和静态资源。
This commit is contained in:
cenzuhai
2026-07-08 17:48:00 +08:00
parent 6713e13ea6
commit 3a04eede84
99 changed files with 17002 additions and 0 deletions

17
frontend/next.config.ts Normal file
View File

@@ -0,0 +1,17 @@
import type { NextConfig } from "next";
const routePre = process.env.NEXT_PUBLIC_ROUTE_PRE || '';
const basePath = routePre ? `/${routePre}` : '';
const nextConfig: NextConfig = {
output: "export",
distDir: routePre || "out",
trailingSlash: true,
basePath: basePath,
assetPrefix: basePath,
images: {
unoptimized: true,
},
};
export default nextConfig;