[タスク 1176: 開発環境コンテナの構築(Client/Server)](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/OMDSDictation/_workitems/edit/1176) 開発用コンテナを構築しました。以下のコンテナを追加しています。 - ライセンス管理 - server - client - ディクテーション管理 - server - client - DB(MySQL) - Cache(Redis)
19 lines
421 B
TypeScript
19 lines
421 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import tsconfigPaths from "vite-tsconfig-paths";
|
|
import env from "vite-plugin-env-compatible";
|
|
|
|
export default defineConfig({
|
|
server: {
|
|
host: true,
|
|
port: 3000,
|
|
open: true,
|
|
},
|
|
build: {
|
|
outDir: "build",
|
|
sourcemap: true,
|
|
minify: false,
|
|
},
|
|
plugins: [env({ prefix: "REACT_APP_" }), tsconfigPaths(), react()],
|
|
});
|