We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
universal
1 parent 85055d1 commit e479a18Copy full SHA for e479a18
packages/fullstack/src/plugin.ts
@@ -157,7 +157,6 @@ export function assetsPlugin(pluginOpts?: FullstackPluginOptions): Plugin[] {
157
import: id,
158
environment: this.environment.name,
159
asEntry: false,
160
- universal: false,
161
};
162
if (argCode) {
163
const argValue = evalValue<ImportAssetsOptions>(argCode);
packages/fullstack/types/shared.ts
@@ -12,9 +12,9 @@
12
//
13
export type ImportAssetsOptions = {
14
import?: string;
15
- environment?: string; // TODO: can remove?
16
- universal?: boolean;
+ environment?: string; // TODO: can we remove in favor of asEntry and universal?
17
asEntry?: boolean;
+ // universal?: boolean;
18
19
20
export type ImportAssetsResult = {
0 commit comments