Is this a valid `filename` in the generated `webpa...
# javascript
n
Is this a valid
filename
in the generated
webpack.config.evaluated.js
?
Copy code
output: {
    ...
    filename: [Function: filename],
    ...
  },
I haven't configured file filename in my build, so it must be the default value. Thanks.
d
The webpack configuration is a real javascript object and the filename is configured using a function that generates the filename(s). The
..evaluated.js
file is a JSON representation of the config, and the function is serialized into that string representation
1
n
I see! Thanks for the clarification.