mirror of
https://github.com/protomaps/PMTiles.git
synced 2026-02-04 19:01:08 +00:00
16 lines
353 B
TypeScript
16 lines
353 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import { resolve } from "path";
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
build: {
|
|
rollupOptions: {
|
|
input: {
|
|
mapview: resolve(__dirname, "index.html"),
|
|
tileinspect: resolve(__dirname, "tileinspect/index.html")
|
|
},
|
|
},
|
|
},
|
|
});
|