Skip to content

Commit 38a0096

Browse files
committed
chore: remove rollup replace warning
Currently we have a warning when building VTU. ``` (!) Plugin replace: @rollup/plugin-replace: 'preventAssignment' currently defaults to false. It is recommended to set this option to `true`, as the next major version will default this option to `true`. ``` `@rollup/plugin-replace` introduced a new option in v2.4.0 to prevent accidental assignements. See https://github.com/rollup/plugins/blob/master/packages/replace/CHANGELOG.md#v240 This probably does not matter for us, but let's get rid of the warning.
1 parent d055022 commit 38a0096

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

rollup.config.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ function createEntry(options) {
3131
],
3232
plugins: [
3333
replace({
34-
"process.env.NODE_ENV": true
34+
values: {
35+
"process.env.NODE_ENV": "true"
36+
},
37+
preventAssignment: true
3538
}),
3639
resolve(), commonjs(), json()
3740
],

0 commit comments

Comments
 (0)