mirror of
https://github.com/multipleof4/sune.git
synced 2026-01-14 08:38:00 +00:00
Fix: Configure HTML partial includes
This commit is contained in:
@@ -5,7 +5,12 @@ import { createHtmlPlugin } from 'vite-plugin-html'
|
|||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
build:{ minify:false },
|
build:{ minify:false },
|
||||||
plugins:[
|
plugins:[
|
||||||
createHtmlPlugin(),
|
createHtmlPlugin({
|
||||||
|
minify:false,
|
||||||
|
// Use vite-plugin-html's built-in fragment include support
|
||||||
|
// via <!-- html-plugin-include: --> comments.
|
||||||
|
// No extra EJS runtime needed.
|
||||||
|
}),
|
||||||
VitePWA({
|
VitePWA({
|
||||||
registerType:'autoUpdate',
|
registerType:'autoUpdate',
|
||||||
manifest:{
|
manifest:{
|
||||||
@@ -19,8 +24,25 @@ export default defineConfig({
|
|||||||
theme_color:'#FFFFFF',
|
theme_color:'#FFFFFF',
|
||||||
background_color:'#000000',
|
background_color:'#000000',
|
||||||
categories:['productivity','utilities'],
|
categories:['productivity','utilities'],
|
||||||
icons:[{ src:'https://sune.planetrenox.com/appstore_content/✺.png', sizes:'1024x1024', type:'image/png' }],
|
icons:[
|
||||||
screenshots:[{ src:'https://sune.planetrenox.com/appstore_content/screenshot1.jpg', sizes:'1344x2693', type:'image/jpeg' },{ src:'https://sune.planetrenox.com/appstore_content/screenshot2.jpg', sizes:'1344x2699', type:'image/jpeg' }]
|
{
|
||||||
|
src:'https://sune.planetrenox.com/appstore_content/✺.png',
|
||||||
|
sizes:'1024x1024',
|
||||||
|
type:'image/png'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
screenshots:[
|
||||||
|
{
|
||||||
|
src:'https://sune.planetrenox.com/appstore_content/screenshot1.jpg',
|
||||||
|
sizes:'1344x2693',
|
||||||
|
type:'image/jpeg'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
src:'https://sune.planetrenox.com/appstore_content/screenshot2.jpg',
|
||||||
|
sizes:'1344x2699',
|
||||||
|
type:'image/jpeg'
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user