mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-12 20:51:48 +00:00
* [feature](webapp) add drill down dimensions and metric period compare and modify layout * [feature](webapp) add drill down dimensions and metric period compare and modify layout * [feature](webapp) gitignore add supersonic-webapp * [feature](webapp) gitignore add supersonic-webapp * [feature](webapp) add chat plugin and split query to parse and execute * [feature](webapp) add chat plugin and split query to parse and execute * [feature](webapp) add chat plugin and split query to parse and execute --------- Co-authored-by: williamhliu <williamhliu@tencent.com>
20 lines
363 B
JavaScript
20 lines
363 B
JavaScript
import basicConfig from './rollup.config.mjs'
|
|
import excludeDependenciesFromBundle from "rollup-plugin-exclude-dependencies-from-bundle"
|
|
|
|
const config = {
|
|
...basicConfig,
|
|
output: [
|
|
{
|
|
file: 'dist/index.es.js',
|
|
format: 'es',
|
|
},
|
|
],
|
|
plugins: [
|
|
...basicConfig.plugins,
|
|
excludeDependenciesFromBundle(),
|
|
]
|
|
}
|
|
|
|
export default config
|
|
|