1
0
mirror of https://github.com/sasjs/adapter.git synced 2025-12-10 17:04:36 +00:00

fix(packaging): fixed output file for Node

This commit is contained in:
Yury Shkoda
2023-04-21 16:02:47 +03:00
parent 8fa908a201
commit 657e415c0c

View File

@@ -86,7 +86,8 @@ const nodeConfig = {
entry: './node/index.ts',
output: {
...browserConfig.output,
path: path.resolve(__dirname, 'build', 'node')
path: path.resolve(__dirname, 'build', 'node'),
filename: 'index.js'
}
}