## 概要 [Task3696: ツールの雛形作成](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/3696) - DevContainerを追加 ## レビューポイント - 特になし ## 動作確認状況 - ローカルで確認
19 lines
397 B
TypeScript
19 lines
397 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: 3100,
|
|
open: true,
|
|
},
|
|
build: {
|
|
outDir: "build",
|
|
sourcemap: true,
|
|
minify: false,
|
|
},
|
|
plugins: [env(), tsconfigPaths(), react()],
|
|
});
|