mirror of
https://github.com/Steffo99/unisteffo.git
synced 2024-11-22 16:04:21 +00:00
Fix firefox bug?
This commit is contained in:
parent
36379a9f4d
commit
aade089ef8
2 changed files with 7 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"private": true,
|
||||
"name": "appuntiweb",
|
||||
"version": "0.7.0",
|
||||
"version": "0.7.1",
|
||||
"license": "AGPL-3.0-or-later",
|
||||
"scripts": {
|
||||
"start": "preact watch --template src/template.html",
|
||||
|
|
|
@ -58,4 +58,10 @@ export default function (config, env, helpers) {
|
|||
})
|
||||
)
|
||||
}
|
||||
|
||||
// https://github.com/preactjs/preact-cli/issues/710
|
||||
let critters = helpers.getPluginsByName(config, 'Critters')[0];
|
||||
if (critters) {
|
||||
critters.plugin.options.preload = 'js' // or some other option
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue