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

28 lines
534 B
JavaScript
Raw Normal View History

2019-06-23 03:35:23 -07:00
module.exports = {
chainWebpack: config => config.resolve.symlinks(false),
// transpileDependencies: [
// // 'node_modules/quill'
// /\/node_modules\/quill\//
// ]
pluginOptions: {
webpackBundleAnalyzer: {
openAnalyzer: false,
},
},
configureWebpack: {
2020-10-28 15:14:09 -07:00
devServer: {
disableHostCheck: true,
},
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";
`,
},
},
},
2020-07-14 14:36:05 -07:00
publicPath: process.env.VUE_APP_PUBLIC_PATH ? process.env.VUE_APP_PUBLIC_PATH : '/',
2019-06-23 03:35:23 -07:00
};