Skip to content

Commit

Permalink
Fix tileinspect entrypoint in gh pages build [#49, #379] (#380)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdon authored Mar 25, 2024
1 parent 08b2c5e commit 71e83f1
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions app/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import { resolve } from "path";

export default defineConfig({
plugins: [react()]
})
plugins: [react()],
build: {
rollupOptions: {
input: {
mapview: resolve(__dirname, "index.html"),
tileinspect: resolve(__dirname, "tileinspect/index.html")
},
},
},
});

0 comments on commit 71e83f1

Please sign in to comment.