diff --git a/.gitignore b/.gitignore index 5cf04d821f..43f07e5936 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,7 @@ assets/*@*.eot assets/*@*.woff assets/*@*.woff2 assets/*@*.ttf +assets/*@*.mp4 frontend/templates/react.tmpl bindata.go server/bindata/generated.go diff --git a/assets/README.md b/assets/README.md new file mode 100644 index 0000000000..84db5f83ed --- /dev/null +++ b/assets/README.md @@ -0,0 +1,9 @@ +# assets Directory + +This directory is used by the frontend build tool to store generated frontend build assets, such as JavaScript bundles, CSS files, and other static resources (images, fonts, etc.) that are produced during the build process. + +## Key Points + +- **Do not commit generated files:** All files in this directory are generated automatically and are git-ignored. They should not be committed to version control. +- **Not for static files:** Do not place unrelated static files (like PDFs, config profiles, or documentation) here. Use a separate directory for non-UI assets. +- **Regenerated on build:** These files are recreated every time you run the frontend build process. diff --git a/assets/bootstrap-package-preview@6ee62ccd9121c4b1cf36.mp4 b/assets/bootstrap-package-preview@6ee62ccd9121c4b1cf36.mp4 deleted file mode 100644 index c95ab67473..0000000000 Binary files a/assets/bootstrap-package-preview@6ee62ccd9121c4b1cf36.mp4 and /dev/null differ diff --git a/assets/company-owned-end-user-auth-preview@15cd5aa8fe3da2239746.mp4 b/assets/company-owned-end-user-auth-preview@15cd5aa8fe3da2239746.mp4 deleted file mode 100644 index 5bde99c547..0000000000 Binary files a/assets/company-owned-end-user-auth-preview@15cd5aa8fe3da2239746.mp4 and /dev/null differ diff --git a/assets/end-user-auth-preview@15cd5aa8fe3da2239746.mp4 b/assets/end-user-auth-preview@15cd5aa8fe3da2239746.mp4 deleted file mode 100644 index 5bde99c547..0000000000 Binary files a/assets/end-user-auth-preview@15cd5aa8fe3da2239746.mp4 and /dev/null differ diff --git a/assets/end-user-auth@15cd5aa8fe3da2239746.mp4 b/assets/end-user-auth@15cd5aa8fe3da2239746.mp4 deleted file mode 100644 index 5bde99c547..0000000000 Binary files a/assets/end-user-auth@15cd5aa8fe3da2239746.mp4 and /dev/null differ diff --git a/assets/install-software-preview@2d61227ef199d9c8c951.mp4 b/assets/install-software-preview@2d61227ef199d9c8c951.mp4 deleted file mode 100644 index e11c77cd24..0000000000 Binary files a/assets/install-software-preview@2d61227ef199d9c8c951.mp4 and /dev/null differ diff --git a/assets/linux-windows-install-software-preview@84a63f7a964085cb7006.mp4 b/assets/linux-windows-install-software-preview@84a63f7a964085cb7006.mp4 deleted file mode 100644 index c755725a5f..0000000000 Binary files a/assets/linux-windows-install-software-preview@84a63f7a964085cb7006.mp4 and /dev/null differ diff --git a/assets/mac-install-software-preview@2d61227ef199d9c8c951.mp4 b/assets/mac-install-software-preview@2d61227ef199d9c8c951.mp4 deleted file mode 100644 index e11c77cd24..0000000000 Binary files a/assets/mac-install-software-preview@2d61227ef199d9c8c951.mp4 and /dev/null differ diff --git a/assets/mdm-migration-video@1895a73b900b9b0aa0dd.mp4 b/assets/mdm-migration-video@1895a73b900b9b0aa0dd.mp4 deleted file mode 100644 index a0e6f7b6ff..0000000000 Binary files a/assets/mdm-migration-video@1895a73b900b9b0aa0dd.mp4 and /dev/null differ diff --git a/assets/setup-assistant-preview@eae6928943e8ca5bd028.mp4 b/assets/setup-assistant-preview@eae6928943e8ca5bd028.mp4 deleted file mode 100644 index 1ef83eb134..0000000000 Binary files a/assets/setup-assistant-preview@eae6928943e8ca5bd028.mp4 and /dev/null differ diff --git a/webpack.config.js b/webpack.config.js index e99b2b67ca..aefafa0929 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -25,9 +25,7 @@ let plugins = [ excludeWarnings: true, }), new webpack.DefinePlugin({ - featureFlags: { - // e.g.: allowGitOpsMode: JSON.stringify(process.env.ALLOW_GITOPS_MODE), - }, + featureFlags: {}, }), ];