mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 03:16:01 +00:00
17 lines
305 B
JavaScript
17 lines
305 B
JavaScript
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()
|
|
]
|
|
};
|