mirror of
https://github.com/kiwix/kiwix-js.git
synced 2025-08-03 11:16:38 -04:00
13 lines
243 B
JavaScript
13 lines
243 B
JavaScript
import { defineConfig } from 'vite'
|
|
|
|
export default defineConfig({
|
|
server: {
|
|
open: 'www/index.html?appCache=false'
|
|
}
|
|
// build: {
|
|
// rollupOptions: {
|
|
// input: 'www/index.html',
|
|
// }
|
|
// }
|
|
});
|