mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 14:16:01 +00:00
deploy WIP
This commit is contained in:
16
packages/api/rollup.config.js
Normal file
16
packages/api/rollup.config.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import commonjs from '@rollup/plugin-commonjs';
|
||||
import resolve from '@rollup/plugin-node-resolve';
|
||||
import json from '@rollup/plugin-json';
|
||||
|
||||
export default {
|
||||
input: 'src/index.js',
|
||||
output: {
|
||||
file: 'bundle.js',
|
||||
format: 'cjs',
|
||||
},
|
||||
plugins: [
|
||||
resolve(),
|
||||
commonjs(),
|
||||
json()
|
||||
]
|
||||
};
|
||||
Reference in New Issue
Block a user