Temp hack
This commit is contained in:
parent
e48f3fed4b
commit
a63ec9d59d
1 changed files with 9 additions and 5 deletions
|
@ -50,11 +50,15 @@ export class DevApp extends App {
|
||||||
},
|
},
|
||||||
pageMap: new Map(),
|
pageMap: new Map(),
|
||||||
renderers: [],
|
renderers: [],
|
||||||
entryModules: new Proxy({}, {
|
// Temporary hack
|
||||||
get(target, key) {
|
entryModules: new Proxy({}, {
|
||||||
return key;
|
has() {
|
||||||
}
|
return true;
|
||||||
}),
|
},
|
||||||
|
get(target, key) {
|
||||||
|
return key;
|
||||||
|
}
|
||||||
|
}),
|
||||||
assets: new Set(),
|
assets: new Set(),
|
||||||
propagation: new Map(),
|
propagation: new Map(),
|
||||||
trailingSlash: userConfig?.trailingSlash ?? 'ignore'
|
trailingSlash: userConfig?.trailingSlash ?? 'ignore'
|
||||||
|
|
Loading…
Reference in a new issue