2023-04-03 05:05:36 +09:00
|
|
|
import { defineConfig } from "vite";
|
2023-04-05 02:54:01 +09:00
|
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
import tsconfigPaths from 'vite-tsconfig-paths'
|
2023-04-03 05:05:36 +09:00
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
build: {
|
|
|
|
// outDir に manifest.json を出力
|
|
|
|
manifest: true,
|
|
|
|
rollupOptions: {
|
|
|
|
// デフォルトの .html エントリを上書き
|
|
|
|
input: 'src/init.tsx',
|
|
|
|
},
|
|
|
|
},
|
2023-04-05 02:54:01 +09:00
|
|
|
plugins: [
|
|
|
|
react(),
|
|
|
|
tsconfigPaths(),
|
|
|
|
],
|
2023-04-03 05:05:36 +09:00
|
|
|
});
|