Skip to content

Commit 691f10c

Browse files
committed
fix: changed env's default export to named export
1 parent bdd1123 commit 691f10c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ class NgxScriptsCli {
139139
const s = v.replace(/'/g, "\\'").replace(/\\"/g, '"');
140140
return `'${s}'`;
141141
});
142-
env = `export default ${env};\n`;
142+
env = `export const env = ${env};\n`;
143143
}
144144

145145
try {

0 commit comments

Comments
 (0)