Initial import of frappe sunderer app

This commit is contained in:
microYF
2026-04-23 14:45:47 +00:00
parent 283972860c
commit 0f323e8d41
17 changed files with 3239 additions and 469 deletions
+4 -4
View File
@@ -24,13 +24,13 @@ export default defineConfig({
manifest: true,
rollupOptions: {
output: {
entryFileNames: 'js/[name].[hash].js',
chunkFileNames: 'js/[name].[hash].js',
entryFileNames: 'js/index.js',
chunkFileNames: 'js/[name].js',
assetFileNames: (assetInfo) => {
if (assetInfo.name.endsWith('.css')) {
return 'css/[name].[hash].[ext]';
return 'css/index.css';
}
return 'assets/[name].[hash].[ext]';
return 'assets/[name][extname]';
}
}
}