app_template/vite.config.js

14 lines
296 B
JavaScript
Raw Normal View History

import { createAppConfig } from "@nextcloud/vite-config";
import { join, resolve } from "path";
export default createAppConfig(
{
main: resolve(join("src", "main.js")),
},
{
createEmptyCSSEntryPoints: true,
extractLicenseInformation: true,
thirdPartyLicense: false,
}
);