Skip to content

Commit e479a18

Browse files
authored
fix(fullstack): remove universal option (#1181)
1 parent 85055d1 commit e479a18

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

packages/fullstack/src/plugin.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,6 @@ export function assetsPlugin(pluginOpts?: FullstackPluginOptions): Plugin[] {
157157
import: id,
158158
environment: this.environment.name,
159159
asEntry: false,
160-
universal: false,
161160
};
162161
if (argCode) {
163162
const argValue = evalValue<ImportAssetsOptions>(argCode);

packages/fullstack/types/shared.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
//
1313
export type ImportAssetsOptions = {
1414
import?: string;
15-
environment?: string; // TODO: can remove?
16-
universal?: boolean;
15+
environment?: string; // TODO: can we remove in favor of asEntry and universal?
1716
asEntry?: boolean;
17+
// universal?: boolean;
1818
};
1919

2020
export type ImportAssetsResult = {

0 commit comments

Comments
 (0)