mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
c3f3e98718
* fix tooltips z-index * move all element ui components * update package lock
42 lines
905 B
JavaScript
42 lines
905 B
JavaScript
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
|
|
|
|
module.exports = {
|
|
chainWebpack: config => {
|
|
config.resolve.symlinks(false);
|
|
// config.plugins.delete("prefetch"); // enable when language package grows
|
|
},
|
|
// transpileDependencies: [
|
|
// // 'node_modules/quill'
|
|
// /\/node_modules\/quill\//
|
|
// ]
|
|
pluginOptions: {
|
|
webpackBundleAnalyzer: {
|
|
openAnalyzer: false,
|
|
},
|
|
i18n: {
|
|
locale: "en",
|
|
fallbackLocale: "en",
|
|
localeDir: "./src/i18n/locales",
|
|
enableInSFC: false,
|
|
},
|
|
},
|
|
configureWebpack: {
|
|
devServer: {
|
|
disableHostCheck: true,
|
|
},
|
|
plugins: [
|
|
new MonacoWebpackPlugin({ languages: ['javascript', 'json', 'typescript'] }),
|
|
],
|
|
},
|
|
css: {
|
|
loaderOptions: {
|
|
sass: {
|
|
prependData: `
|
|
@import "@/n8n-theme-variables.scss";
|
|
`,
|
|
},
|
|
},
|
|
},
|
|
publicPath: process.env.VUE_APP_PUBLIC_PATH ? process.env.VUE_APP_PUBLIC_PATH : '/',
|
|
};
|