mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
Initial commit to release
This commit is contained in:
32
packages/editor-ui/vue.config.js
Normal file
32
packages/editor-ui/vue.config.js
Normal file
@@ -0,0 +1,32 @@
|
||||
const GoogleFontsPlugin = require('@beyonk/google-fonts-webpack-plugin');
|
||||
|
||||
module.exports = {
|
||||
chainWebpack: config => config.resolve.symlinks(false),
|
||||
// transpileDependencies: [
|
||||
// // 'node_modules/quill'
|
||||
// /\/node_modules\/quill\//
|
||||
// ]
|
||||
pluginOptions: {
|
||||
webpackBundleAnalyzer: {
|
||||
openAnalyzer: false,
|
||||
},
|
||||
},
|
||||
configureWebpack: {
|
||||
plugins: [
|
||||
new GoogleFontsPlugin({
|
||||
fonts: [
|
||||
{ family: 'Open Sans', variants: ['300', '400', '600', '700'] },
|
||||
],
|
||||
}),
|
||||
],
|
||||
},
|
||||
css: {
|
||||
loaderOptions: {
|
||||
sass: {
|
||||
data: `
|
||||
@import "@/n8n-theme-variables.scss";
|
||||
`,
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user