repod/vite.config.ts
Michel Roux a2e14d65f2
All checks were successful
repod / xml (push) Successful in 1m16s
repod / php (push) Successful in 48s
repod / nodejs (push) Successful in 1m30s
repod / release (push) Has been skipped
perf: remove devtools due to severall crashes
2024-11-06 23:32:09 +01:00

21 lines
361 B
TypeScript

import { join, resolve } from 'path'
import { createAppConfig } from '@nextcloud/vite-config'
import { defineConfig } from 'vite'
const config = defineConfig({
build: {
sourcemap: false,
},
})
export default createAppConfig(
{
main: resolve(join('src', 'main.ts')),
},
{
config,
createEmptyCSSEntryPoints: true,
thirdPartyLicense: false,
},
)