mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
19 lines
311 B
JavaScript
19 lines
311 B
JavaScript
const Path = require('path')
|
|
|
|
module.exports = {
|
|
mode: 'development',
|
|
target: 'web',
|
|
entry: ['./test.js'],
|
|
node: {
|
|
fs: 'empty'
|
|
},
|
|
output: {
|
|
path: Path.resolve(__dirname, './output'),
|
|
filename: 'test.js'
|
|
},
|
|
resolve: {
|
|
modules: ['node_modules'],
|
|
extensions: ['*', '.js']
|
|
}
|
|
}
|