n8n/packages/editor-ui/vue.config.js

42 lines
905 B
JavaScript
Raw Normal View History

const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
2019-06-23 03:35:23 -07:00
module.exports = {
2021-11-09 00:59:48 -08:00
chainWebpack: config => {
config.resolve.symlinks(false);
// config.plugins.delete("prefetch"); // enable when language package grows
},
2019-06-23 03:35:23 -07:00
// transpileDependencies: [
// // 'node_modules/quill'
// /\/node_modules\/quill\//
// ]
pluginOptions: {
webpackBundleAnalyzer: {
openAnalyzer: false,
},
2021-11-09 00:59:48 -08:00
i18n: {
locale: "en",
fallbackLocale: "en",
localeDir: "./src/i18n/locales",
enableInSFC: false,
},
2019-06-23 03:35:23 -07:00
},
configureWebpack: {
2020-10-28 15:14:09 -07:00
devServer: {
disableHostCheck: true,
},
plugins: [
new MonacoWebpackPlugin({ languages: ['javascript', 'json', 'typescript'] }),
],
2019-06-23 03:35:23 -07:00
},
css: {
loaderOptions: {
sass: {
prependData: `
2019-06-23 03:35:23 -07:00
@import "@/n8n-theme-variables.scss";
`,
},
},
},
publicPath: process.env.VUE_APP_PUBLIC_PATH ? process.env.VUE_APP_PUBLIC_PATH : '/',
2019-06-23 03:35:23 -07:00
};