Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSarah German <sgerman@gitlab.com>2022-06-13 18:57:48 +0300
committerSarah German <sgerman@gitlab.com>2022-06-13 18:57:48 +0300
commit89a3394cdfb8196294bd5765afd60b9e1070995a (patch)
treeea621c9ca878b351ce6aff5285202d0b7fb900bc /rollup.config.js
parentfaed2060118befaa2f236e473cc5d2ddec358106 (diff)
Bundle DocSearch with yarn
Diffstat (limited to 'rollup.config.js')
-rw-r--r--rollup.config.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/rollup.config.js b/rollup.config.js
index 43c0942e..fa0a7112 100644
--- a/rollup.config.js
+++ b/rollup.config.js
@@ -6,6 +6,7 @@ const glob = require('glob');
const commonjs = require('@rollup/plugin-commonjs');
const { babel } = require('@rollup/plugin-babel');
const importResolver = require('rollup-plugin-import-resolver');
+const css = require('rollup-plugin-import-css');
const svg = require('rollup-plugin-svg');
const vue = require('rollup-plugin-vue');
@@ -35,6 +36,7 @@ module.exports = glob.sync('content/frontend/**/*.js').map((file) => ({
babelHelpers: 'bundled',
}),
json(),
+ css(),
importResolver({
alias: {
vue: './node_modules/vue/dist/vue.esm.browser.min.js',